<?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: Custom taxonomies in WordPress 2.8</title>
	<atom:link href="http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28/feed" rel="self" type="application/rss+xml" />
	<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28</link>
	<description>Life, Blogging, and WordPress</description>
	<lastBuildDate>Sat, 13 Mar 2010 21:21:24 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nathan B</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-181034</link>
		<dc:creator>Nathan B</dc:creator>
		<pubDate>Thu, 11 Mar 2010 21:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-181034</guid>
		<description>Sorry for probably missing something obvious, but what&#039;s the key to getting the description to display for a term in the taxonomy? For a category the hard-coding is:

&lt;pre&gt;&lt;code&gt;&lt;?php if (is_category(&apos;Category A&apos;)) { ?&gt;
&lt;p&gt;This is the text to describe category A&lt;/p&gt;&lt;/code&gt;&lt;/pre&gt;

but what&#039;s the equivalent for taxonomies? And for users of the Custom Taxonomies plugin, what&#039;s the non-hard-coded way to get the descriptions you enter in the taxonomy edit panel to display?</description>
		<content:encoded><![CDATA[<p>Sorry for probably missing something obvious, but what&#8217;s the key to getting the description to display for a term in the taxonomy? For a category the hard-coding is:</p>
<pre><code>&lt;?php if (is_category(&apos;Category A&apos;)) { ?&gt;
&lt;p&gt;This is the text to describe category A&lt;/p&gt;</code></pre>
<p>but what&#8217;s the equivalent for taxonomies? And for users of the Custom Taxonomies plugin, what&#8217;s the non-hard-coded way to get the descriptions you enter in the taxonomy edit panel to display?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Bailey</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-180824</link>
		<dc:creator>Simon Bailey</dc:creator>
		<pubDate>Wed, 10 Mar 2010 00:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-180824</guid>
		<description>Howdy Justin,

Great post mate, just wanted to pick your brains if you don&#039;t mind. Soneone posted earlier about a need for event dates, and I have a specific need for a taxonomy related to this and I have no idea how to do it. Wondered if you could help.

It&#039;s an events section where users can post a new event, where the event is going to be, a description, and when it is occuring.

My issue is the date.

I sorted the location with:

&lt;pre&gt;&lt;code&gt;register_taxonomy( &#039;Location&#039;, &#039;events&#039;, array( &#039;hierarchical&#039; =&gt; true, &#039;label&#039; =&gt; __(&#039;Location&#039;) ) );&lt;/code&gt;&lt;/pre&gt;

But I have no idea what to do for the date.

I want to ultimately display the day as a number and the first 3 letters of the month.

So event will be held on 7 FEB.

Is there a way I can set up 2 dropdowns, one for the day and one for the month, and set this as a taxonomy in the write panel for users?

I am quite new to this, hope you can help or possibly point me in the right direction.

Once again, cheers for a great post.</description>
		<content:encoded><![CDATA[<p>Howdy Justin,</p>
<p>Great post mate, just wanted to pick your brains if you don&#8217;t mind. Soneone posted earlier about a need for event dates, and I have a specific need for a taxonomy related to this and I have no idea how to do it. Wondered if you could help.</p>
<p>It&#8217;s an events section where users can post a new event, where the event is going to be, a description, and when it is occuring.</p>
<p>My issue is the date.</p>
<p>I sorted the location with:</p>
<pre><code>register_taxonomy( 'Location', 'events', array( 'hierarchical' =&gt; true, 'label' =&gt; __('Location') ) );</code></pre>
<p>But I have no idea what to do for the date.</p>
<p>I want to ultimately display the day as a number and the first 3 letters of the month.</p>
<p>So event will be held on 7 FEB.</p>
<p>Is there a way I can set up 2 dropdowns, one for the day and one for the month, and set this as a taxonomy in the write panel for users?</p>
<p>I am quite new to this, hope you can help or possibly point me in the right direction.</p>
<p>Once again, cheers for a great post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cracks</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-180220</link>
		<dc:creator>Cracks</dc:creator>
		<pubDate>Fri, 05 Mar 2010 05:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-180220</guid>
		<description>I&#039;ve been using, and loving Custome Taxonomies since Justin published this post. But since upgrading to WP V2.9.1 the is_tax is causing grief (http://core.trac.wordpress.org/ticket/10721#comment:6).

And since CT&#039;s are my primary navigation system, and I&#039;m using if is_tax for custom page titles and descriptions, I&#039;m a bit screwed.

Can anyone help?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using, and loving Custome Taxonomies since Justin published this post. But since upgrading to WP V2.9.1 the is_tax is causing grief (<a href="http://core.trac.wordpress.org/ticket/10721#comment:6" rel="nofollow">http://core.trac.wordpress.org/ticket/10721#comment:6</a>).</p>
<p>And since CT&#8217;s are my primary navigation system, and I&#8217;m using if is_tax for custom page titles and descriptions, I&#8217;m a bit screwed.</p>
<p>Can anyone help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sobre este blog &#8211; Los libros del Tigre</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-180162</link>
		<dc:creator>Sobre este blog &#8211; Los libros del Tigre</dc:creator>
		<pubDate>Thu, 04 Mar 2010 21:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-180162</guid>
		<description>[...] blog está destinado a realizar pruebas y experimentos sobre el concepto de taxonomías personalizadas de WordPress. No debe considerarse, pues, como un blog de carácter educativo, ni siquiera como una [...]</description>
		<content:encoded><![CDATA[<p>[...] blog está destinado a realizar pruebas y experimentos sobre el concepto de taxonomías personalizadas de WordPress. No debe considerarse, pues, como un blog de carácter educativo, ni siquiera como una [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webdevign &#187; Blog Archive &#187; Wordpress und Taxonomie in Posts</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-178793</link>
		<dc:creator>webdevign &#187; Blog Archive &#187; Wordpress und Taxonomie in Posts</dc:creator>
		<pubDate>Tue, 23 Feb 2010 14:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-178793</guid>
		<description>[...] genau man die Taxonomie einrichten und dann auch benutzt, kann man hier anhand von Beispielen sehen. Leider  funktionieren die Taxonomien bisher nur in Verbindung mit den [...]</description>
		<content:encoded><![CDATA[<p>[...] genau man die Taxonomie einrichten und dann auch benutzt, kann man hier anhand von Beispielen sehen. Leider  funktionieren die Taxonomien bisher nur in Verbindung mit den [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-178216</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 17 Feb 2010 14:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-178216</guid>
		<description>Hey. Ok, I found a sort-of solution using the &quot;Simple Tags&quot; plugin. It doesn&#039;t let you move terms to a custom taxonomy but you can do a blanket search of all your posts and then add your terms to the taxonomy. 

eg: install plugin &gt; go to &quot;mass edit terms&quot; under the posts menu &gt; select your custom taxonomy from the dropdown list at the top of the page &gt; do a quick search &gt; add your terms &gt; click &quot;update all.&quot;

It&#039;s not exactly ideal, I know, but it&#039;ll get the job done until there&#039;s an actual solution. Good luck  /J</description>
		<content:encoded><![CDATA[<p>Hey. Ok, I found a sort-of solution using the &#8220;Simple Tags&#8221; plugin. It doesn&#8217;t let you move terms to a custom taxonomy but you can do a blanket search of all your posts and then add your terms to the taxonomy. </p>
<p>eg: install plugin &gt; go to &#8220;mass edit terms&#8221; under the posts menu &gt; select your custom taxonomy from the dropdown list at the top of the page &gt; do a quick search &gt; add your terms &gt; click &#8220;update all.&#8221;</p>
<p>It&#8217;s not exactly ideal, I know, but it&#8217;ll get the job done until there&#8217;s an actual solution. Good luck  /J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-177935</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 14 Feb 2010 18:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-177935</guid>
		<description>still waitin&#039; myself... :(</description>
		<content:encoded><![CDATA[<p>still waitin&#8217; myself&#8230; <img src='http://justintadlock.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-177796</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Sat, 13 Feb 2010 07:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-177796</guid>
		<description>I&#039;m intensely searching for the solution to moving taxonomies and the only thing I can come up with is to get into the database and edit the &#039;wp_term_taxonomy&#039; table. It seems as simple as changing &#039;post_tag&#039; to &#039;people&#039; for example.</description>
		<content:encoded><![CDATA[<p>I&#8217;m intensely searching for the solution to moving taxonomies and the only thing I can come up with is to get into the database and edit the &#8216;wp_term_taxonomy&#8217; table. It seems as simple as changing &#8216;post_tag&#8217; to &#8216;people&#8217; for example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-177791</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Sat, 13 Feb 2010 06:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-177791</guid>
		<description>Is there an update on the ability to &lt;a href=&quot;http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-131896&quot; rel=&quot;nofollow&quot;&gt;move taxonomy terms between groups&lt;/a&gt;. Seems like several people are looking to do this. I really want to start using custom taxonomies but it seems there are still too many unkowns.</description>
		<content:encoded><![CDATA[<p>Is there an update on the ability to <a href="http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-131896" rel="nofollow">move taxonomy terms between groups</a>. Seems like several people are looking to do this. I really want to start using custom taxonomies but it seems there are still too many unkowns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Abbott</title>
		<link>http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28#comment-177566</link>
		<dc:creator>David Abbott</dc:creator>
		<pubDate>Wed, 10 Feb 2010 13:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=1659#comment-177566</guid>
		<description>Justin - thanks. Really useful.

One thing I&#039;m struggling with is how to get a list of other posts with the same taxonomy term as the current post. No related post plugin does it without specifying what term you want the related posts to relate to.

The scenario: I have a custom term &#039;Author&#039; for a site that collects articles by different writers. There are hundreds of authors so I wanted to avoid setting up author-users for each one so turned to taxonomies. When the viewer is looking at an article by a particular author I would like to be able to display a list of other articles by that author without navigating away from that page onto a taxonomy archive page.

Do you, or does anyone here, know if that is possible?

Thanks again for the clear guide you have provided</description>
		<content:encoded><![CDATA[<p>Justin &#8211; thanks. Really useful.</p>
<p>One thing I&#8217;m struggling with is how to get a list of other posts with the same taxonomy term as the current post. No related post plugin does it without specifying what term you want the related posts to relate to.</p>
<p>The scenario: I have a custom term &#8216;Author&#8217; for a site that collects articles by different writers. There are hundreds of authors so I wanted to avoid setting up author-users for each one so turned to taxonomies. When the viewer is looking at an article by a particular author I would like to be able to display a list of other articles by that author without navigating away from that page onto a taxonomy archive page.</p>
<p>Do you, or does anyone here, know if that is possible?</p>
<p>Thanks again for the clear guide you have provided</p>
]]></content:encoded>
	</item>
</channel>
</rss>
