<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Unfolding NeuronsPosts from the series: Organize Series Usage Tips(UnfoldingNeurons.com)</title>
	<atom:link href="http://unfoldingneurons.com/series/organize-series-usage-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://unfoldingneurons.com</link>
	<description>Freeing Darren Ethier's cluttered mind...</description>
	<pubDate>Fri, 27 Jun 2008 03:45:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Showing off Your Series: Series List</title>
		<link>http://unfoldingneurons.com/2008/showing-off-your-series-series-list</link>
		<comments>http://unfoldingneurons.com/2008/showing-off-your-series-series-list#comments</comments>
		<pubDate>Thu, 08 May 2008 02:24:29 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
		
		<category><![CDATA[Neurotic Plugins]]></category>

		<category><![CDATA[Organize Series]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[neurotic-plugins]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[Series]]></category>

		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://unfoldingneurons.com/?p=440</guid>
		<description><![CDATA[This entry is part 10 of 10 in the series Organize Series Usage TipsIn 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 &#8220;latest series&#8221; function is just a way of [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Showing off Your Series: Series List", url: "http://unfoldingneurons.com/2008/showing-off-your-series-series-list" });</script>]]></description>
			<content:encoded><![CDATA[<div class="seriesmeta">This entry is part 10 of 10 in the series <a href="http://unfoldingneurons.com/series/organize-series-usage-tips" title="series-52">Organize Series Usage Tips</a></div><p>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 &#8220;latest series&#8221; function is just a way of giving readers quick insight into the most recent series you&#8217;ve published to your blog and is the easiest to customize.</p>
<p>However, there is another more powerful function included with Organize Series that you can use to output a list of all the series you&#8217;ve written where you want that acts very similar to the &#8220;<a href="http://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a>&#8221; template tag in the WordPress core. What that means is that if you&#8217;ve already got a handle on how to use &#8220;wp-list_categories&#8221; then you&#8217;ll have no problem with &#8220;wp_list_series()&#8221;.  Let&#8217;s take a closer look:</p>
<h3>The Widget</h3>
<p>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.</p>
<p>The widget name is &#8220;Series Widget&#8221; (imaginative eh?) and when you activate it you&#8217;ll see that there are some options you can set for the widget (Click on &#8220;Edit&#8221;).  Here&#8217;s a breakdown of what the various options are:</p>
<ul>
<li>Widget Title - simply enter what you want to appear as the title of this section in the sidebar.</li>
<li>Dropdown/List - This controls how the list of series will appear on your blog.  If you select &#8220;Dropdown&#8221; it will result in a dropdown list of series (which is javascripted so when a user clicks on a series in the dropdown they&#8217;ll go to the archives page for that series). I&#8217;ll talk more about dropdown lists in the next post.  If you select &#8220;List&#8221; you&#8217;ll get a typical hyperlinked list of series you&#8217;ve written.</li>
<li>Show Post Count - If checked, the number of posts in the series will be located next to each series title in the list.</li>
<li>Hide Empty Series - If checked, any series that don&#8217;t have any posts associated with it yet will not be included in the list.</li>
<li>Post List Toggle - If checked, when you are on a single post page that is part of a series a list of other posts in that series will display in the widget.</li>
</ul>
<h3>The Fun Way</h3>
<p>If you&#8217;re anything like me, you like having more fine control over how things appear on your blog.  That&#8217;s where the handy wp_list_series(); function comes into play.  The usage of wp_list_series is to insert <code>&lt;?php if (function_exists('wp_list_series') wp_list_series(); ?&gt;</code> wherever you want.  However, the real control comes in when you submit various parameters via the function.</p>
<h4><strong>The Defaults:</strong></h4>
<pre>$defaults = array(
	'orderby' =&gt; 'name',
		'order' =&gt; 'ASC', 'show_last_update' =&gt; 0,
		'style' =&gt; 'list', 'show_count' =&gt; 0,
		'hide_empty' =&gt; 1, 'use_desc_for_title' =&gt; 1,
		'feed' =&gt; '', 'feed_image' =&gt; '', 'exclude' =&gt; '',
		'title_li' =&gt; __('Series'),'number' =&gt; '',
		'echo' =&gt; 1
	);</pre>
<p>By default wp_list_series() outputs a list&#8230;</p>
<ul>
<li>ordered by the names of the series</li>
<li>in ascending order</li>
<li>that does not show the date/time of the last updated post in the series.</li>
<li>outputted in &#8220;list&#8221; style (i.e. with &lt;li&gt; and &lt;/li&gt; surrounding each series item.</li>
<li>that does not show the number of posts in the series.</li>
<li>hiding series that do not have posts</li>
<li>using the description of the series as the &#8220;title&#8221; attribute for the link to each series.</li>
<li>with no feed or feed image used</li>
<li>not excluding any series</li>
<li>displaying &#8220;Series&#8221; as the heading over the list,</li>
<li>with no &#8220;limit&#8221; set for the number of series pulled from the database, and,</li>
<li>echoed (i.e. displayed) instead of just returning the output (not displaying).</li>
</ul>
<h4><strong>The Parameters</strong></h4>
<p>Here&#8217;s a more detailed summary of each paramater:</p>
<p><strong>orderby<br />
</strong>(<em>string</em>) Sort categories alphabetically, by unique Series ID, or by the count of posts in that Series. The default is sort by series name. Valid values:</p>
<ul>
<li> <tt>ID</tt></li>
<li> <tt>name</tt> - default</li>
<li> <tt>count</tt></li>
</ul>
<dl>
<dt> <strong>order </strong></dt>
<dd> (<em>string</em>) Sort order for series (either ascending or descending). The default is <em>ascending</em>. Valid values:</p>
<ul>
<li> <tt>ASC</tt> - default</li>
<li> <tt>DESC</tt></li>
</ul>
</dd>
</dl>
<dl>
<dt><strong> show_last_updated </strong></dt>
<dd> (<em>boolean</em>) Should the last updated timestamp for posts  be displayed (TRUE) or not (FALSE). Defaults to FALSE. </dd>
</dl>
<blockquote>
<ul>
<li> <tt>1 (true) </tt></li>
<li> <tt>0 (false) </tt> - default</li>
</ul>
</blockquote>
<dl>
<dt> <strong>style </strong></dt>
<dd> (<em>string</em>) Style to display the series list in. A value of <em>list</em> displays the series as list items while <em>none</em> generates no special display method (the list items are separated by <tt>&lt;br&gt;</tt> tags). The default setting is <em>list</em> (creates list items for an unordered list). See <a title="Template Tags/wp list categories" href="#Markups">the markup section</a> for more. Valid values:</p>
<ul>
<li> <tt>list</tt> - default.</li>
<li> <tt>none</tt></li>
</ul>
</dd>
</dl>
<dl>
<dt><strong> show_count </strong></dt>
<dd> (<em>boolean</em>) Toggles the display of the current count of posts in each series. The default is <em>false</em> (do not show post counts). Valid values:</p>
<ul>
<li> <tt>1 (true)</tt></li>
<li> <tt>0 (false)</tt> - default</li>
</ul>
</dd>
</dl>
<dl>
<dt><strong> hide_empty </strong></dt>
<dd> (<em>boolean</em>) Toggles the display of series with no posts. The default is <em>true</em> (hide empty series). Valid values:</p>
<ul>
<li> <tt>1 (true)</tt> - default</li>
<li> <tt>0 (false)</tt></li>
</ul>
</dd>
</dl>
<dl>
<dt><strong> use_desc_for_title </strong></dt>
<dd> (<em>boolean</em>) Sets whether a series&#8217; description is inserted into the <tt>title</tt> attribute of the links created (i.e. &lt;a title=&#8221;&lt;em&gt;Series Description&lt;/em&gt;&#8221; href=&#8221;&#8230;). The default is <em>true</em> (series descriptions will be inserted). Valid values:</p>
<ul>
<li> <tt>1 (true)</tt> - default</li>
<li> <tt>0 (false)</tt></li>
</ul>
</dd>
</dl>
<dl>
<dt> <strong>feed</strong> (<em>string</em>)</dt>
<dd>Display a link to each series&#8217;  <a title="Glossary" href="http://codex.wordpress.org/Glossary#RSS">rss-2</a> feed and set the link text to display. The default is <em>no text and no feed displayed</em>. </dd>
</dl>
<dl>
<dt> <strong>feed_image</strong> </dt>
<dd> (<em>string</em>) Set a URI for an image (usually an rss feed icon) to act as a link to each series&#8217; rss-2 feed. This parameter overrides the <strong>feed</strong> parameter. There is no default for this parameter. </dd>
</dl>
<dl>
<dt> <strong>exclude </strong></dt>
<dd> (<em>string</em>) Exclude one or more series from the results. This parameter takes a comma-separated list of series by unique ID, in ascending order. </dd>
</dl>
<dl>
<dt> <strong>title_li </strong></dt>
<dd> (<em>string</em>) Set the title and style of the outer list item. Defaults to &#8220;_Series&#8221;. If present but empty, the outer list item will not be displayed. </dd>
</dl>
<dl>
<dt> <strong>number </strong></dt>
<dd> (<em>integer</em>) Sets the number of Series to display.  This causes the SQL LIMIT value to be defined.  Default to no LIMIT. </dd>
</dl>
<dl>
<dt> <strong>echo </strong></dt>
<dd> (<em>boolean</em>) Show the result or keep it in a variable. The default is <em>true</em> (display the series organized). Valid values:</p>
<ul>
<li> <tt>1 (true)</tt> - default</li>
<li> <tt>0 (false)</tt></li>
</ul>
</dd>
</dl>
<h4><a name="Markups">Markup and Styling of Series Lists</a></h4>
<p>By default, <strong>wp_list_series()</strong> generates nested unordered lists (<tt>ul</tt>) within a single list item (<tt>li</tt>) titled &#8220;Series&#8221;.</p>
<p>You can remove the outermost item and list by setting the <tt>title_li</tt> parameter to an empty string. You&#8217;ll need to wrap the output in an ordered list (<tt>ol</tt>) or unordered list yourself.  If you don&#8217;t want list output at all, set the <tt>style</tt> parameter to <var>none</var>.</p>
<p>If the series list is generated on a Series Archive page, the list item for that series is marked with the HTML class <tt>current-series</tt>. Each series item also has the class <tt>series-item</tt> and <tt>series-item-{series-id}</tt>.</p>
<pre>...
&lt;li class="series-item series-item-5 current-series"&gt;
  [You are on this series page]
&lt;/li&gt;
&lt;li class=&#8221;series-item series-item-6&#8243;&gt;
  [Another series]
&lt;/li&gt;
&#8230;</pre>
<p>You can style that list item with a <a title="Glossary" href="http://codex.wordpress.org/Glossary#CSS">CSS selector</a> :</p>
<pre>.current-series { ... }</pre>
<h4>Usage:</h4>
<p>Let&#8217;s give an example:</p>
<p>Say you wanted to show the three most recent series you&#8217;ve posted, with the number of posts in each series indicated, not including the crappy &#8220;101 ways to watch paint dry&#8221; series that you wrote.  First, going to the &#8220;manage-&gt;series&#8221; page in your WordPress Administration you find that the series id of your &#8220;101 ways to watch paint dry&#8221; series is 33,  equipped with this information here&#8217;s the code you would write:</p>
<p><code>&lt;?php wp_list_series('orderby=id&amp;order=DESC&amp;show_count=1&amp;exclude=33&amp;number=3'); ?&gt;</code></p>
<p>It&#8217;s that simple!</p>
<img src="http://unfoldingneurons.com/2c9dca32/26673f12/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=3fc28165-c4ae-4ab1-bfc9-ac839091cbb9&amp;title=Showing+off+Your+Series%3A+Series+List&amp;url=http%3A%2F%2Funfoldingneurons.com%2F2008%2Fshowing-off-your-series-series-list">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://unfoldingneurons.com/2008/showing-off-your-series-series-list/feed</wfw:commentRss>
	
		<series:name><![CDATA[Organize Series Usage Tips]]></series:name>
	</item>
		<item>
		<title>Showing off your series</title>
		<link>http://unfoldingneurons.com/2008/showing-off-your-series</link>
		<comments>http://unfoldingneurons.com/2008/showing-off-your-series#comments</comments>
		<pubDate>Fri, 25 Apr 2008 03:18:50 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
		
		<category><![CDATA[Neurotic Plugins]]></category>

		<category><![CDATA[Organize Series]]></category>

		<category><![CDATA[Talkin Tech]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[latest series]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[usage help]]></category>

		<guid isPermaLink="false">http://unfoldingneurons.com/?p=429</guid>
		<description><![CDATA[This entry is part 9 of 10 in the series Organize Series Usage TipsOne of the things that the Organize Series WordPress plugin does well is provide multiple ways for you to promote and &#8220;show off&#8221; the various series you&#8217;ve written.  Since some of those possibilities aren&#8217;t easily visible to the new user this [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Showing off your series", url: "http://unfoldingneurons.com/2008/showing-off-your-series" });</script>]]></description>
			<content:encoded><![CDATA[<div class="seriesmeta">This entry is part 9 of 10 in the series <a href="http://unfoldingneurons.com/series/organize-series-usage-tips" title="series-52">Organize Series Usage Tips</a></div><p>One of the things that the <a title="Link to the plugin page" href="http://unfoldingneurons.com/neurotic-plugins/organize-series-wordpress-plugin" target="_blank">Organize Series WordPress</a> plugin does well is provide multiple ways for you to promote and &#8220;show off&#8221; the various series you&#8217;ve written.  Since some of those possibilities aren&#8217;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.</p>
<h3>Latest Series - &lt;?php latest_series(); ?&gt;</h3>
<p>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&#8217;ve published (or are in the midst of writing).</p>
<p><strong><em>How to use it:</em></strong></p>
<p>To use the latest_series() tag you need to be familiar with editing your theme files.  There are some great pointers for this <a title="Stepping into Template Tags" href="http://codex.wordpress.org/Stepping_Into_Template_Tags" target="_blank">here</a>, <a title="WordPress is not PHP" href="http://mattread.com/archives/2005/04/wordpress-is-not-php/" target="_blank">here</a>, and <a title="Stepping into Templates" href="http://codex.wordpress.org/Stepping_Into_Templates" target="_blank">here</a>.  The latest_series() template tag can be placed wherever you want - inside or outside of the <a title="Click for more information on the WordPress loop" href="http://codex.wordpress.org/The_Loop" target="_blank">WordPress loop</a>.   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 <a href="http://unfoldingneurons.com/2008/series-options-page-wrap-up" target="_blank">Latest Series Template</a> 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.</p>
<p>So let&#8217;s take a look at actually using this tag.  Let&#8217;s say you want to insert the latest series information in your sidebar and you want it to display the series icon, a description of the series, and let&#8217;s throw in a list of the posts in that series as well.  First, we need to set up the &#8220;Latest Series Template&#8221; via the series options page.  It will look like this:</p>
<p><a title="Click for larger/clearer image" href="http://unfoldingneurons.com/wordpress/wp-content/uploads/extended-latest-series-template.jpg" target="_blank"><img class="aligncenter size-full wp-image-430" title="extended-latest-series-template" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/extended-latest-series-template.jpg" alt="\" width="499" height="96" /></a></p>
<p>Notice that I&#8217;ve used the following %tokens%: %series_icon_linked% - which gets replaced with the series icon for the latest series (if there is one); %series_description% - which gets replaced with the series description for the latest series (if there is one); and %post_title_list% - which gets replaced with the list of posts in the series (according to the &#8220;<a title="Series Post List Template " href="http://unfoldingneurons.com/2008/series-options-page-series-post-list-template" target="_blank">Series Post List Template</a>&#8221; on the Series options page.  I&#8217;ve also styled it using xhtml and css.  If you are familiar with xhtml or css your options are virtually limitless for the actual output of the Latest Series Template tag.  Note that you can also control the size (width) of the series icon via the &#8220;<a title="Series Icon Options" href="http://unfoldingneurons.com/2008/series-options-page-wrap-up" target="_blank">Series Icons Options</a>&#8221; also on the series options page.</p>
<p>Now that you&#8217;ve got the Latest Series output customized on your series options page you&#8217;ve got to insert code somewhere in your theme.  There&#8217;s actually TWO ways to do this.  The easy way is if your theme is widget enabled you can simply use the <strong>super-duper Latest Series Widget</strong> that I&#8217;ve included with Organize Series!  The slightly harder way is to simply insert &#8220;&lt;?php latest_series(); ?&gt;&#8221; wherever you want the latest series stuff to show up.</p>
<p>For instance, most implementations of this information will be in the sidebar of your blog.  In my case I simply followed the style of my sidebar (&lt;ul&gt; and &lt;li&gt;) and inserted the code appropriately in it&#8217;s own block - like this:</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriescode.jpg"><img class="aligncenter size-full wp-image-432" title="latestseriescode" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriescode.jpg" alt="\" width="380" height="179" /></a></p>
<p>Notice how the entire &#8220;latest series&#8221; block is surrounded by the conditional &#8220;&lt;?php if (function_exists(&#8217;latest_series&#8217;))&#8230;&#8221; statement.  This is good coding practice to follow whenever you use template tags from plugins so if you have to disable a plugin or are testing things you won&#8217;t disable your blog too.   Note as well, that this code is based off of how my theme&#8217;s sidebar is structured.  When inserting &#8220;&lt;?php latest_series(); ?&gt; on your own blog you&#8217;ll want to follow the html structure in your theme.</p>
<p>Finally, here&#8217;s how the latest series block looks on my blog using the above procedure:</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/extended-latest-series-box.jpg"><img class="aligncenter size-full wp-image-431" title="extended-latest-series-box" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/extended-latest-series-box.jpg" alt="\" width="296" height="481" /></a></p>
<p>In the next post we&#8217;ll look at showing off all the series you&#8217;ve written in a list form.</p>
<img src="http://unfoldingneurons.com/2c9dca32/26673f12/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=3fc28165-c4ae-4ab1-bfc9-ac839091cbb9&amp;title=Showing+off+your+series&amp;url=http%3A%2F%2Funfoldingneurons.com%2F2008%2Fshowing-off-your-series">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://unfoldingneurons.com/2008/showing-off-your-series/feed</wfw:commentRss>
	
		<series:name><![CDATA[Organize Series Usage Tips]]></series:name>
	</item>
		<item>
		<title>Series Options Page: Wrap up</title>
		<link>http://unfoldingneurons.com/2008/series-options-page-wrap-up</link>
		<comments>http://unfoldingneurons.com/2008/series-options-page-wrap-up#comments</comments>
		<pubDate>Sat, 19 Apr 2008 15:34:16 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
		
		<category><![CDATA[Neurotic Plugins]]></category>

		<category><![CDATA[Organize Series]]></category>

		<category><![CDATA[Talkin Tech]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[latest series]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[series icon]]></category>

		<category><![CDATA[series options]]></category>

		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://unfoldingneurons.com/?p=423</guid>
		<description><![CDATA[This entry is part 8 of 10 in the series Organize Series Usage TipsWe&#8217;re going to conclude our look at the Series Options page in this post by looking at the &#8220;Latest Series&#8221; Template and the Series Icon Options.
Here&#8217;s what the &#8220;Latest Series Template&#8221; option field looks like (WP2.5):

This is the one template option that [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Series Options Page: Wrap up", url: "http://unfoldingneurons.com/2008/series-options-page-wrap-up" });</script>]]></description>
			<content:encoded><![CDATA[<div class="seriesmeta">This entry is part 8 of 10 in the series <a href="http://unfoldingneurons.com/series/organize-series-usage-tips" title="series-52">Organize Series Usage Tips</a></div><p>We&#8217;re going to conclude our look at the Series Options page in this post by looking at the &#8220;Latest Series&#8221; Template and the Series Icon Options.</p>
<p>Here&#8217;s what the &#8220;Latest Series Template&#8221; option field looks like (WP2.5):</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriestmplte.jpg"><img class="aligncenter size-full wp-image-424" title="latestseriestmplte" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriestmplte.jpg" alt="\&quot;Latest Series Template\&quot;" width="450" height="90" /></a></p>
<p>This is the one template option that is <em>not</em> automatically added to your blog.  The contents of this template control the output of the <code>latest_series()</code> function or the latest series widget.  You can insert the <code>latest_series()</code> 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.</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriesdisplay.jpg"><img class="alignleft size-full wp-image-425" title="latestseriesdisplay" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/latestseriesdisplay.jpg" alt="\&quot;Latest Series Display" width="289" height="205" /></a>This is how the default Latest Series output looks on my blog (to the left):</p>
<p>Of course like the other template options on the series options page <a href="http://unfoldingneurons.com/2008/series-options-page-tokens">you can use different tokens</a> 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&#8217;ll be adding more tokens that you can use.</p>
<p><strong>The series icon</strong> options is for controlling the width of the series icons in different places where they appear.  These are global values that are applied when the automatic insertion of series display related functions in your blog is enabled (default setting).  Here&#8217;s the Series Icons options:</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/series-icons-width.jpg"><img class="aligncenter size-full wp-image-426" title="series-icons-width" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/series-icons-width.jpg" alt="Series Icons Options" width="483" height="130" /></a></p>
<p>Notice that the width&#8217;s you enter are in pixels.  The height of the image will be be relative to the image&#8217;s original size and the ratio of the change between the original width and the one you enter in this section.  Notice, this does not resize the actual image file but simply affects the display size of the image (the numbers entered here are what Organize Series uses in the &#8220;width&#8221; parameter of the &lt;img&gt; tag).</p>
<p>That&#8217;s it for the Series Options page.  We&#8217;ll be revisiting it at different times through this series as it is so central to controlling the output of series related information in your blog.  But at least the last few posts give a brief overview of the things you control on the Series Options page.</p>
<p>In the next few posts we&#8217;re going to be looking at some specific series related pages created by Organize Series.</p>
<img src="http://unfoldingneurons.com/2c9dca32/26673f12/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=3fc28165-c4ae-4ab1-bfc9-ac839091cbb9&amp;title=Series+Options+Page%3A+Wrap+up&amp;url=http%3A%2F%2Funfoldingneurons.com%2F2008%2Fseries-options-page-wrap-up">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://unfoldingneurons.com/2008/series-options-page-wrap-up/feed</wfw:commentRss>
	
		<series:name><![CDATA[Organize Series Usage Tips]]></series:name>
	</item>
		<item>
		<title>Series Options Page: Series Table of Contents Template</title>
		<link>http://unfoldingneurons.com/2008/series-options-page-series-table-of-contents-template</link>
		<comments>http://unfoldingneurons.com/2008/series-options-page-series-table-of-contents-template#comments</comments>
		<pubDate>Thu, 10 Apr 2008 05:35:03 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
		
		<category><![CDATA[Neurotic Plugins]]></category>

		<category><![CDATA[Organize Series]]></category>

		<category><![CDATA[Talkin Tech]]></category>

		<category><![CDATA[orgSeries]]></category>

		<category><![CDATA[series options]]></category>

		<category><![CDATA[series table of contents]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[usage tips]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://unfoldingneurons.com/?p=414</guid>
		<description><![CDATA[This entry is part 7 of 10 in the series Organize Series Usage TipsSo far in the Organize Series Usage Tips Series I&#8217;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 [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Series Options Page: Series Table of Contents Template", url: "http://unfoldingneurons.com/2008/series-options-page-series-table-of-contents-template" });</script>]]></description>
			<content:encoded><![CDATA[<div class="seriesmeta">This entry is part 7 of 10 in the series <a href="http://unfoldingneurons.com/series/organize-series-usage-tips" title="series-52">Organize Series Usage Tips</a></div><p>So far in the <a href="http://unfoldingneurons.com/series/organize-series-usage-tips">Organize Series Usage Tips Series</a> I&#8217;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&#8217;m going to focus on the customization of the Series Table of Contents Template.</p>
<p>The Series Table of Contents is a page on your blog that lists all the series you&#8217;ve written (that contain posts).  The output of this page is controlled by three things.</p>
<ul>
<li>&#8220;Series Table of Contents URL&#8221; in the <a href="http://unfoldingneurons.com/2008/series-options-page-automation-settings">Automation Settings Section</a> of the Series Options Page.  This setting is what you want to be the location of the series table of contents page.</li>
<li>&#8220;seriestoc.php&#8221; - 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 <em>should</em> work with most theme setups but of course it won&#8217;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&#8217;ll be writing a post later in this series to go into more detail with this.</li>
<li>&#8220;Series Table of Contents Template&#8221; in the Template Tag Options section of the Series Options Page.</li>
</ul>
<p>Like other templates found on the series options page you can use html, css and %tokens% to control how each series listing will appear on the series table of contents page.  For example, this&#8230;</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/seriestoctemplate.jpg"><img class="aligncenter size-full wp-image-415" title="Series Table of Contents Template" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/seriestoctemplate.jpg" alt="\&quot;Series Table of Contents Template\&quot;" width="499" height="105" /></a></p>
<p>Will result in something like this:</p>
<p><a href="http://unfoldingneurons.com/wordpress/wp-content/uploads/seriestocexample.jpg"><img class="aligncenter size-full wp-image-416" title="Series Table of Contents Example" src="http://unfoldingneurons.com/wordpress/wp-content/uploads/seriestocexample.jpg" alt="Series Table of Contents Example" width="500" height="453" /></a></p>
<p>For those who want to get more customized with the display of the Series Table of Contents Template here are some template tags (functions) you can use.  Remember all of these template tags are found in the &#8220;series-template-tags.php&#8221; file which contains inline documentation if you are too impatient for me to write a detailed explanation in this series!</p>
<p><strong>Template Tags for Series Table of Contents:</strong><br />
<code>wp_serieslist_display_code()</code>: This will output a formatted output of the indicated series and <em>does not</em> have to be in the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.  It accepts two parameters: the series id of the series to be listed (required), and what page is calling this function (not required). Remember this function <em>does not</em> output a list of all the series you&#8217;ve written, it only prints the output for the given series.  The output is controlled by the &#8220;series table of contents template&#8221; as explained in this post.</p>
<p><code>wp_serieslist_display()</code>:  This is the function you will use if you want to output the entire list of non-empty series you&#8217;ve written.  All it does is query the database for the series you&#8217;ve written that contain posts and then calls <code>wp_serieslist_display_code()</code> for each series in the list.  Again, this function also does not need to be called from within the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p>That&#8217;s it for this template.  I&#8217;ll cover the last two options on the series options page in the next post of this series.</p>
<img src="http://unfoldingneurons.com/2c9dca32/26673f12/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=3fc28165-c4ae-4ab1-bfc9-ac839091cbb9&amp;title=Series+Options+Page%3A+Series+Table+of+Contents+Template&amp;url=http%3A%2F%2Funfoldingneurons.com%2F2008%2Fseries-options-page-series-table-of-contents-template">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://unfoldingneurons.com/2008/series-options-page-series-table-of-contents-template/feed</wfw:commentRss>
	
		<series:name><![CDATA[Organize Series Usage Tips]]></series:name>
	</item>
		<item>
		<title>Series Options Page: Series Meta Template</title>
		<link>http://unfoldingneurons.com/2008/series-options-page-series-meta-template</link>
		<comments>http://unfoldingneurons.com/2008/series-options-page-series-meta-template#comments</comments>
		<pubDate>Fri, 28 Mar 2008 02:51:05 +0000</pubDate>
		<dc:creator>Darren</dc:creator>
		
		<category><![CDATA[Neurotic Plugins]]></category>

		<category><![CDATA[Organize Series]]></category>

		<category><![CDATA[Talkin Tech]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[and Tutorials]]></category>

		<category><![CDATA[FAQs]]></category>

		<category><![CDATA[Help]]></category>

		<category><![CDATA[Meta]]></category>

		<category><![CDATA[Template]]></category>

		<category><![CDATA[usage tips]]></category>

		<guid isPermaLink="false">http://www.unfoldingneurons.com/2008/series-options-page-series-meta-template</guid>
		<description><![CDATA[This entry is part 6 of 10 in the series Organize Series Usage TipsOnce again, if you haven&#8217;t yet, you should read about automation settings, tokens, and Templates before reading any further.
In this post I&#8217;m going to zero in on the Series Meta.  What is the series meta?  It&#8217;s basically an information strip [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Series Options Page: Series Meta Template", url: "http://unfoldingneurons.com/2008/series-options-page-series-meta-template" });</script>]]></description>
			<content:encoded><![CDATA[<div class="seriesmeta">This entry is part 6 of 10 in the series <a href="http://unfoldingneurons.com/series/organize-series-usage-tips" title="series-52">Organize Series Usage Tips</a></div><p>Once again, if you haven&#8217;t yet, you should read about <a href="http://www.unfoldingneurons.com/2008/series-options-page-automation-settings">automation settings</a>, <a href="http://www.unfoldingneurons.com/2008/series-options-page-tokens">tokens</a>, and <a href="http://www.unfoldingneurons.com/2008/series-options-page-series-post-list-template">Templates</a> before reading any further.</p>
<p>In this post I&#8217;m going to zero in on the Series Meta.  What is the series meta?  It&#8217;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!</p>
<p>Here&#8217;s what the template looks like:</p>
<p><a href="http://www.unfoldingneurons.com/wordpress/wp-content/uploads/windowslivewriterseriesoptionspageseriesmetatemplate-14134image-2.png"><img src="http://www.unfoldingneurons.com/wordpress/wp-content/uploads/windowslivewriterseriesoptionspageseriesmetatemplate-14134image-thumb.png" alt="series meta template" width="490" height="114" /></a></p>
<p>And here&#8217;s the output on the blog:</p>
<p><a href="http://www.unfoldingneurons.com/wordpress/wp-content/uploads/windowslivewriterseriesoptionspageseriesmetatemplate-14134image-4.png"><img src="http://www.unfoldingneurons.com/wordpress/wp-content/uploads/windowslivewriterseriesoptionspageseriesmetatemplate-14134image-thumb-1.png" alt="series meta output" width="484" height="93" /></a></p>
<p>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 <code>%postcontent%</code> token.</p>
<p>If you want to manually insert the series-meta template into your theme then you need to remove the <code>%postcontent%</code> token AND make sure the <code>Display series meta information with posts?</code> checkbox is unchecked.</p>
<p><strong>Template Tag:<br />
</strong>Here&#8217;s the function you use to call the series-meta template (remember full documentation is found in the <code>series-template-tags.php</code> file):</p>
<p><code>wp_seriesmeta_write();</code> - To use this in your theme make sure you echo it (i.e. <code>&lt;?php echo wp_seriesmeta_write(): ?&gt;</code>)</p>
<img src="http://unfoldingneurons.com/2c9dca32/26673f12/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=3fc28165-c4ae-4ab1-bfc9-ac839091cbb9&amp;title=Series+Options+Page%3A+Series+Meta+Template&amp;url=http%3A%2F%2Funfoldingneurons.com%2F2008%2Fseries-options-page-series-meta-template">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://unfoldingneurons.com/2008/series-options-page-series-meta-template/feed</wfw:commentRss>
	
		<series:name><![CDATA[Organize Series Usage Tips]]></series:name>
	</item>
	</channel>
</rss>
