<?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"
	>
<channel>
	<title>Comments on: Per Category Intro Text</title>
	<atom:link href="http://epicalex.com/per-category-intro-text/feed/" rel="self" type="application/rss+xml" />
	<link>http://epicalex.com/per-category-intro-text/</link>
	<description></description>
	<pubDate>Wed, 20 Aug 2008 13:24:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Trisha Cupra, Web Design Watchdog</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-961</link>
		<dc:creator>Trisha Cupra, Web Design Watchdog</dc:creator>
		<pubDate>Sun, 29 Jun 2008 14:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-961</guid>
		<description>Is there a way to write the PHP code so that it checks if there is something written in the description field for the category, and if there is then it displays it, but if it is blank it disregards it?</description>
		<content:encoded><![CDATA[<p>Is there a way to write the PHP code so that it checks if there is something written in the description field for the category, and if there is then it displays it, but if it is blank it disregards it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauro, Suitecom Hotel Marketing</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-920</link>
		<dc:creator>Mauro, Suitecom Hotel Marketing</dc:creator>
		<pubDate>Wed, 25 Jun 2008 10:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-920</guid>
		<description>I resolved. I have done so:

1. I created a file (catintro.php) where I placed the code

2. Then I have inserted with a "php include" in category.php 

I hope this help someone

Ciao!</description>
		<content:encoded><![CDATA[<p>I resolved. I have done so:</p>
<p>1. I created a file (catintro.php) where I placed the code</p>
<p>2. Then I have inserted with a &#8220;php include&#8221; in category.php </p>
<p>I hope this help someone</p>
<p>Ciao!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauro, Suitecom Hotel Marketing</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-919</link>
		<dc:creator>Mauro, Suitecom Hotel Marketing</dc:creator>
		<pubDate>Wed, 25 Jun 2008 10:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-919</guid>
		<description>Hi,

very useful! 

But if I have many categories (for example 50) is not convenient to have a long list of "elseif." Maybe is there a more elegant way?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>very useful! </p>
<p>But if I have many categories (for example 50) is not convenient to have a long list of &#8220;elseif.&#8221; Maybe is there a more elegant way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-889</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 21 Jun 2008 17:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-889</guid>
		<description>@Jasonian - It suggests the same thing in the codex because it was me that added it! The suggestion that that section starts with is that you could create a different category.php file for each category, adding different text at the top. This is of course a lot of work, so I added a dynamic version, allowing for one category.php file.

As per your second point, you could of course use 
&lt;code&gt;&lt;?php echo category_description(); ?&gt;&lt;/code&gt; in your category.php file, however this would then always output the description, regardless of whether you wanted one or not. Using this method allows for you to define some text for only certain categories. 

I hope that answers your query! :-)</description>
		<content:encoded><![CDATA[<p>@Jasonian - It suggests the same thing in the codex because it was me that added it! The suggestion that that section starts with is that you could create a different category.php file for each category, adding different text at the top. This is of course a lot of work, so I added a dynamic version, allowing for one category.php file.</p>
<p>As per your second point, you could of course use<br />
<code>&lt;?php echo category_description(); ?&gt;</code> in your category.php file, however this would then always output the description, regardless of whether you wanted one or not. Using this method allows for you to define some text for only certain categories. </p>
<p>I hope that answers your query! <img src='http://epicalex.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasonian.</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-888</link>
		<dc:creator>Jasonian.</dc:creator>
		<pubDate>Sat, 21 Jun 2008 17:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-888</guid>
		<description>The WordPress.org Codex makes the same suggestion as you do, and I don't understand why.

http://codex.wordpress.org/Category_Templates#Adding_Text_to_Category_Pages

Categories in WordPress have a "description" field (see your Manage &#62; Categories admin page). Instead of having to write code to check each category, just display that built-in description.

http://codex.wordpress.org/Template_Tags/category_description

I have a feeling I'm missing an important aspect of usage....</description>
		<content:encoded><![CDATA[<p>The WordPress.org Codex makes the same suggestion as you do, and I don&#8217;t understand why.</p>
<p><a href="http://codex.wordpress.org/Category_Templates#Adding_Text_to_Category_Pages">http://codex.wordpress.org/Category_Templates#Adding_Text_to_Category_Pages</a></p>
<p>Categories in WordPress have a &#8220;description&#8221; field (see your Manage &gt; Categories admin page). Instead of having to write code to check each category, just display that built-in description.</p>
<p><a href="http://codex.wordpress.org/Template_Tags/category_description">http://codex.wordpress.org/Template_Tags/category_description</a></p>
<p>I have a feeling I&#8217;m missing an important aspect of usage&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-707</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 20 May 2008 16:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-707</guid>
		<description>If there is a category.php in your theme, then use that, if not, then yeah, use the archive.php.

Post back if it works for you, or if you have any further questions!

Alex</description>
		<content:encoded><![CDATA[<p>If there is a category.php in your theme, then use that, if not, then yeah, use the archive.php.</p>
<p>Post back if it works for you, or if you have any further questions!</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trisha Cupra, Web Design Watchdog</title>
		<link>http://epicalex.com/per-category-intro-text/#comment-706</link>
		<dc:creator>Trisha Cupra, Web Design Watchdog</dc:creator>
		<pubDate>Tue, 20 May 2008 15:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://epicalex.com/?p=55#comment-706</guid>
		<description>Where do I put the code? In the archive.php?</description>
		<content:encoded><![CDATA[<p>Where do I put the code? In the archive.php?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.380 seconds -->
