<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Series: WordPress Plugin</title>
	<atom:link href="http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin</link>
	<description>Life, Blogging, and WordPress</description>
	<lastBuildDate>Sat, 13 Mar 2010 06:59:42 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Notes from Day One of WordCamp Ireland &#124; Steve Flinter</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-180679</link>
		<dc:creator>Notes from Day One of WordCamp Ireland &#124; Steve Flinter</dc:creator>
		<pubDate>Mon, 08 Mar 2010 23:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-180679</guid>
		<description>[...] Internal linking &amp; series of posts. Use custom taxonomies. Justin Tadlock has awesome plugin for series of posts &#8211; Series. [...]</description>
		<content:encoded><![CDATA[<p>[...] Internal linking &amp; series of posts. Use custom taxonomies. Justin Tadlock has awesome plugin for series of posts &#8211; Series. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephanie Leary</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-176669</link>
		<dc:creator>Stephanie Leary</dc:creator>
		<pubDate>Sun, 31 Jan 2010 07:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-176669</guid>
		<description>Justin, this plugin is great. I ran into a tiny problem: my taxonomy archive kept returning a 404 error. I edited the plugin to flush the rewrite rules after creating the taxonomy, and everything worked as expected:

&lt;pre&gt;&lt;code&gt;function create_series_taxonomy() {
	$structure = get_option( &#039;permalink_structure&#039; );
	if ( empty( $structure ) )
		$args = array( &#039;hierarchical&#039; =&gt; false, &#039;label&#039; =&gt; __(&#039;Series&#039;, &#039;series&#039;), &#039;query_var&#039; =&gt; &#039;series&#039;, &#039;rewrite&#039; =&gt; false );
	else
		$args = array( &#039;hierarchical&#039; =&gt; false, &#039;label&#039; =&gt; __(&#039;Series&#039;, &#039;series&#039;), &#039;query_var&#039; =&gt; &#039;series&#039;, &#039;rewrite&#039; =&gt; array( &#039;slug&#039; =&gt; &#039;series&#039; ) );

	register_taxonomy( &#039;series&#039;, &#039;post&#039;, $args );
	$GLOBALS[&#039;wp_rewrite&#039;]-&gt;flush_rules();
}&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Justin, this plugin is great. I ran into a tiny problem: my taxonomy archive kept returning a 404 error. I edited the plugin to flush the rewrite rules after creating the taxonomy, and everything worked as expected:</p>
<pre><code>function create_series_taxonomy() {
	$structure = get_option( 'permalink_structure' );
	if ( empty( $structure ) )
		$args = array( 'hierarchical' =&gt; false, 'label' =&gt; __('Series', 'series'), 'query_var' =&gt; 'series', 'rewrite' =&gt; false );
	else
		$args = array( 'hierarchical' =&gt; false, 'label' =&gt; __('Series', 'series'), 'query_var' =&gt; 'series', 'rewrite' =&gt; array( 'slug' =&gt; 'series' ) );

	register_taxonomy( 'series', 'post', $args );
	$GLOBALS['wp_rewrite']-&gt;flush_rules();
}</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geschenkideen</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-159208</link>
		<dc:creator>Geschenkideen</dc:creator>
		<pubDate>Tue, 27 Oct 2009 10:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-159208</guid>
		<description>Good post, thank you Justin. I will try to use series to make the grouping of my articles easier and more comfortable for my users!</description>
		<content:encoded><![CDATA[<p>Good post, thank you Justin. I will try to use series to make the grouping of my articles easier and more comfortable for my users!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress 插件推荐 &#8211; 2009年9月5日 :: WordPress 博客专业主机网 &#8211; 主机评论 &#8211; 主机销售</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-159104</link>
		<dc:creator>WordPress 插件推荐 &#8211; 2009年9月5日 :: WordPress 博客专业主机网 &#8211; 主机评论 &#8211; 主机销售</dc:creator>
		<pubDate>Mon, 26 Oct 2009 23:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-159104</guid>
		<description>[...] Series 文章插件 这个插件允许你使用 WordPress [...]</description>
		<content:encoded><![CDATA[<p>[...] Series 文章插件 这个插件允许你使用 WordPress [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hausbau</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-158980</link>
		<dc:creator>Hausbau</dc:creator>
		<pubDate>Mon, 26 Oct 2009 10:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-158980</guid>
		<description>Series seems to to a good job. I will also try this plugin in my next wordpress installation.</description>
		<content:encoded><![CDATA[<p>Series seems to to a good job. I will also try this plugin in my next wordpress installation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: concierge</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-157741</link>
		<dc:creator>concierge</dc:creator>
		<pubDate>Sun, 18 Oct 2009 00:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-157741</guid>
		<description>At the beginning i had doubt about wordpress and its flexibility but after 3 years of use, I am greatly satisfied. Joomla made me become mad sometimes. So, my choice is done.</description>
		<content:encoded><![CDATA[<p>At the beginning i had doubt about wordpress and its flexibility but after 3 years of use, I am greatly satisfied. Joomla made me become mad sometimes. So, my choice is done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: disiniadaebook</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-157667</link>
		<dc:creator>disiniadaebook</dc:creator>
		<pubDate>Sat, 17 Oct 2009 12:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-157667</guid>
		<description>hi, justin nice blog. your wp plugins is great. thanks for share.</description>
		<content:encoded><![CDATA[<p>hi, justin nice blog. your wp plugins is great. thanks for share.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 饼干小窝 &#187; WordPress 插件推荐 &#8211; 2009年9月5日</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-155734</link>
		<dc:creator>饼干小窝 &#187; WordPress 插件推荐 &#8211; 2009年9月5日</dc:creator>
		<pubDate>Tue, 06 Oct 2009 00:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-155734</guid>
		<description>[...] Series 文章插件 [...]</description>
		<content:encoded><![CDATA[<p>[...] Series 文章插件 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martina</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-155469</link>
		<dc:creator>martina</dc:creator>
		<pubDate>Sat, 03 Oct 2009 12:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-155469</guid>
		<description>thanks so much for this great tutorial and instruction, great for helping with my project. greetings from berlin. m.</description>
		<content:encoded><![CDATA[<p>thanks so much for this great tutorial and instruction, great for helping with my project. greetings from berlin. m.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: new york shopping</title>
		<link>http://justintadlock.com/archives/2009/06/09/series-wordpress-plugin#comment-154291</link>
		<dc:creator>new york shopping</dc:creator>
		<pubDate>Fri, 25 Sep 2009 18:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1707#comment-154291</guid>
		<description>I think wordpress is really of value. I don&#039;t like comparing wordpress and joomla. But, I love both to be honest.</description>
		<content:encoded><![CDATA[<p>I think wordpress is really of value. I don&#8217;t like comparing wordpress and joomla. But, I love both to be honest.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
