Editorial Calendar - Version 3.1.1

Version Description

This version is exactly the same as version 3.1, but it's been fully tested against WordPress 3.9.

Download this release

Release Info

Developer zgrossbart
Plugin Icon wp plugin Editorial Calendar
Version 3.1.1
Comparing to
See all releases

Code changes from version 3.1 to 3.1.1

Files changed (2) hide show
  1. edcal.php +1 -1
  2. readme.txt +20 -2
edcal.php CHANGED
@@ -18,7 +18,7 @@
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
- Version: 3.1
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
+ Version: 3.1.1
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 3.0
5
- Tested up to: 3.8.1
6
- Stable tag: 3.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
@@ -161,6 +161,20 @@ No. The calendar is only an administration tool. None of your readers will kno
161
 
162
  Moving published posts can cause problems with some RSS feeds and is generally not a very popular thing to do. The calendar only allows you to move scheduled and draft posts.
163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  == Screenshots ==
165
 
166
  1. The calendar integrates seamlessly into the WordPress administration console
@@ -173,6 +187,10 @@ Moving published posts can cause problems with some RSS feeds and is generally n
173
 
174
  == Changelog ==
175
 
 
 
 
 
176
  = 3.1 =
177
 
178
  The calendar now adds the category slugs for each post as a class for the line of that post in the calendar.
2
  Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 3.0
5
+ Tested up to: 3.9
6
+ Stable tag: 3.1.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
161
 
162
  Moving published posts can cause problems with some RSS feeds and is generally not a very popular thing to do. The calendar only allows you to move scheduled and draft posts.
163
 
164
+ = Can I change post colors or styles in the calendar? =
165
+
166
+ You can style the posts in the calendar with CSS on your blog. The calendar adds a new CSS class to your post for every catalog. The class is based on the slug for the category.
167
+
168
+ For example, if you have a category named "My Category" you might have a slug for it named "my-category". Then you can make all posts with that category show up as red in the calendar with CSS like this:
169
+
170
+ <pre>
171
+ .post.my-category {
172
+ color: red;
173
+ }
174
+ </pre>
175
+
176
+ You can use any CSS properties to change posts in the calendar based on the post category.
177
+
178
  == Screenshots ==
179
 
180
  1. The calendar integrates seamlessly into the WordPress administration console
187
 
188
  == Changelog ==
189
 
190
+ = 3.1.1 =
191
+
192
+ This version is exactly the same as version 3.1, but it's been fully tested against WordPress 3.9.
193
+
194
  = 3.1 =
195
 
196
  The calendar now adds the category slugs for each post as a class for the line of that post in the calendar.