Plugin Directory

Changeset 496218


Ignore:
Timestamp:
01/27/2012 05:08:35 PM (14 years ago)
Author:
MakerBlock
Message:
 
Location:
simple-series/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-series/trunk/readme.txt

    r496037 r496218  
    55Requires at least: 3.3
    66Tested up to: 3.3.1
    7 Stable tag: 1.3
     7Stable tag: 1.4
    88
    99An easy to use shortcode for automatically creating and organizing a series list for multiple posts on the same topic with appropriate SEO attributes.
     
    3939No 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.
    4040
     41= Hey!  This formatting sucks!  Can I add my own CSS? =
     42
     43Sure!  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.
     44* div#mbk_simple_series_wrapper {  }
     45* div#mbk_simple_series_wrapper span#mbk_simple_series_title {  }
     46* div#mbk_simple_series_wrapper span#mbk_simple_series_title ol li.mbk_simple_series_list_item {  }
     47
    4148= I have more questions! =
    4249
     
    4956
    5057== Changelog ==
     58
     59= 1.4 =
     60* 1/27/2012: FAQ gives some guidance on how to style the series lists. 
     61* 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).
    5162
    5263= 1.3 =
     
    6576* Create an uninstall button - it would delete ALL post meta info that was associated with a key of "mbk_simple_series"
    6677* 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.
    67 * Add a little help for people who want to style the plugin's output
  • simple-series/trunk/simpleseries.php

    r496022 r496218  
    44Plugin URI: http://www.MakerBlock.com
    55Description: Super simple post series organization
    6 Version: 1.3
     6Version: 1.4
    77Date: 01-27-2012
    88Author: MakerBlock
     
    4040        $pageposts = $wpdb->get_results($querystr, OBJECT);
    4141    //  4. Create the title for the series
    42         $text = "<div id='mbk_simple_series_wrapper'><span class='mbk_simple_series_title'>$title</span><ol>";
     42        $text = "<div id='mbk_simple_series_wrapper'><span id='mbk_simple_series_title'>$title</span><ol>";
    4343    //  4. Create an OL list for the posts - appended to the end of the post
    4444        for ($i=0; $i<count($pageposts);$i++)
Note: See TracChangeset for help on using the changeset viewer.