7 May, 2008
In the last post, I talked about how you can show off the latest series in your sidebar. One of the caveats of the latest_series() function/widget is that it only shows one series. The “latest series” function is just a way of giving readers quick insight into the most recent series you’ve published to your blog and is the easiest to customize.
However, there is another more powerful function included with Organize Series that you can use to output a list of all the series you’ve written where you want that acts very similar to the “wp_list_categories()” template tag in the WordPress core. What that means is that if you’ve already got a handle on how to use “wp-list_categories” then you’ll have no problem with “wp_list_series()”. Let’s take a closer look:
The Widget
For those of you who are uncomfortable with editing your theme files and who are using a theme with widgets enabled there is a widget included with Organize Series that you can use to output the list of series in your sidebar.
...
This is a preview of Showing off Your Series: Series List
.
Read the full post (1245 words, estimated 4:59 mins reading time)
24 Apr, 2008
One of the things that the Organize Series WordPress plugin does well is provide multiple ways for you to promote and “show off” the various series you’ve written. Since some of those possibilities aren’t easily visible to the new user this next few posts in the series will give you a list of all the different ways you can publicize your serial work.
Latest Series - <?php latest_series(); ?>
This template tag is one of the few features of Organize Series that is not automatically enabled right out of the box on fresh Organize Series installs. However, it is a powerful function that provides an easy way for you to promote the latest series you’ve published (or are in the midst of writing).
How to use it:
To use the latest_series() tag you need to be familiar with editing your theme files. There are some great pointers for this here, here, and here. The latest_series() template tag can be placed wherever you want - inside or outside of the WordPress loop. What will happen is that when the page is generated the latest_series template tag will be replaced by what you have included in the Latest Series Template in the Series Options Page. So you can control the output via the series options. By default, the latest_series tag will display the series icon for the latest series.
...
This is a preview of Showing off your series
.
Read the full post (312 words, 3 images, estimated 1:15 mins reading time)
19 Apr, 2008
We’re going to conclude our look at the Series Options page in this post by looking at the “Latest Series” Template and the Series Icon Options.
Here’s what the “Latest Series Template” option field looks like (WP2.5):

This is the one template option that is not automatically added to your blog. The contents of this template control the output of the latest_series() function or the latest series widget. You can insert the latest_series() function wherever you want it to appear in your blog (manually into your theme files) or you can simply use the built in widget if you have widgets enabled for your theme.
This is how the default Latest Series output looks on my blog (to the left):
Of course like the other template options on the series options page you can use different tokens to control the contents of the latest_series() ouput. For instance you might want to use the %series_title% token to display the series title instead of the series icon. In future versions of Organize Series I’ll be adding more tokens that you can use.
...
This is a preview of Series Options Page: Wrap up
.
Read the full post (391 words, 3 images, estimated 1:34 mins reading time)
10 Apr, 2008
So far in the Organize Series Usage Tips Series I’ve been writing about the Series Options page and focusing on some of the things you can do there to customize the output of series related information on your blog. In this post of the series I’m going to focus on the customization of the Series Table of Contents Template.
The Series Table of Contents is a page on your blog that lists all the series you’ve written (that contain posts). The output of this page is controlled by three things.
- “Series Table of Contents URL” in the Automation Settings Section of the Series Options Page. This setting is what you want to be the location of the series table of contents page.
- “seriestoc.php” - this is the default file that Organize Series will load when the series table of contents page is requested. The default layout in this file should work with most theme setups but of course it won’t work with all. In some cases, this file will have to be modified to match your theme structure (i.e by looking at your themes index.php or archive.php file). I’ll be writing a post later in this series to go into more detail with this.
...
This is a preview of Series Options Page: Series Table of Contents Template
.
Read the full post (506 words, 2 images, estimated 2:01 mins reading time)
27 Mar, 2008
Once again, if you haven’t yet, you should read about automation settings, tokens, and Templates before reading any further.
In this post I’m going to zero in on the Series Meta. What is the series meta? It’s basically an information strip you can associate with a post that belongs to a series for a quick overview of what part the post is, a total count of the posts in the series, and the name of the series the post belongs to. Of course what you actually put in the series meta is up to you!
Here’s what the template looks like:

And here’s the output on the blog:

Now in the case of the series-meta, it appears wherever the post that is a part of a series is displayed and the location of the output is controlled once again by the %postcontent% token.
If you want to manually insert the series-meta template into your theme then you need to remove the %postcontent% token AND make sure the Display series meta information with posts? checkbox is unchecked.
...
This is a preview of Series Options Page: Series Meta Template
.
Read the full post (229 words, 2 images, estimated 55 secs reading time)