=== Plugin Name ===
Contributors: MakerBlock
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EYYL4BEFYRJF2
Tags: series, simple series, series of posts, posts series, post organization, organize series, series organization, post, posts, shortcode, short code, organize, issues, magazine, article, articles, list, organization, series organization
Requires at least: 3.3
Tested up to: 3.3.1
Stable tag: 1.4
An easy to use shortcode for automatically creating and organizing a series list for multiple posts on the same topic with appropriate SEO attributes.
== Description ==
Simple Post Series with SEO! uses a WordPress shortcode to associate your posts together, with a little extra SEO mojo for good measure. All you have to do is use the shortcode in each of the posts you want in the same series and the plugin does the rest. It automatically finds all of the posts with the same shortcode, organizes them by publication date, and presents them in a professional and easy to read format with appropriate SEO tags. If you wish to change the formating, you can just add your own custom CSS to your theme.
If you like this plugin, please give it a 5-star rating over here -->
This simple series plugin doesn't clutter up your WordPress installation with unnecessary settings. It doesn't create extra tables, content types, or taxonomies. It doesn't require a special version of WordPress or the very latest features of PHP or MySQL. Neither are there any unnecessary options, buttons, settings to mess with.
And, you can always visit my website (It's mostly about awesome open source robots, if you're into that kinda thing).
== Installation ==
This section describes how to install the plugin and get it working.
1. Upload `simpleseries.php` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Decide on the title for your series of posts
1. Add the following shortcode to each post in your series `[simple_series title="This Is My Series Title"]`
1. Now every post with that exact same shortcode will automatically have a neatly organized list of all posts in the series, in chronological order!
== Frequently Asked Questions ==
= How does "Simple Post Series with SEO!" work? =
Easy! Just add the shortcode to each of the posts you want to put in the series. Inside the shortcode you will need to specify the title for the series. Like so:
`[simple_series title="This Is My Series Title"]`
= What if I add more posts later? =
No problem! The "Simple Post Series with SEO!" plugin will always update the series lists in each of your posts whenever you publish a new post. The newest post will always be added to the series in chronological order, by publication date. You can see an example of what it looks like here in my own DrawBot series.
= Hey! This formatting sucks! Can I add my own CSS? =
Sure! There are three components to the series list: the DIV wrapper, the title of the series, and the list items. Just edit the following to suit and add them to your stylesheet.
div#mbk_simple_series_wrapper { }
div#mbk_simple_series_wrapper span#mbk_simple_series_title { }
div#mbk_simple_series_wrapper span#mbk_simple_series_title ol li.mbk_simple_series_list_item { }
= Wait! I have more questions! =
Please visit my website or send me an e-mail!
== Screenshots ==
1. An example of the shortcode as it appears in the post editor
2. The same shortcode from the same post, as it appears to someone reading the post
== Changelog ==
= 1.4 =
* 1/27/2012: FAQ gives some guidance on how to style the series lists.
* 1/27/2012: A very slight change to the series list formatting. (I changed the list title from having a class to having an id tag).
= 1.3 =
* 1/27/2012: Simplifying the plugin a little, adding a "to do" list
= 1.2 =
* 1/26/2012: Now the series shows up properly in RSS feeds too!
= 1.1 =
* 1/26/2012: Now the plugin supports multiple separate post series!
= 1.0 =
* Initial release on 1/25/2012!
== To Do List ==
* Create an uninstall button - it would delete ALL post meta info that was associated with a key of "mbk_simple_series"
* Create a way to rename an entire series. This would take a fair bit of work - since the shortcode inside each post would have to be edited. It's not that easy, but totally doable.