<?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: Adding Custom Headers to Category Pages in Thesis</title>
	<atom:link href="http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/</link>
	<description>WordPress Consulting</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:58:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Darya</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4631</link>
		<dc:creator>Darya</dc:creator>
		<pubDate>Sun, 25 Sep 2011 23:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4631</guid>
		<description>Yeap that worked! Thanks so much for a quick and correct answer. :)</description>
		<content:encoded><![CDATA[<p>Yeap that worked! Thanks so much for a quick and correct answer. <img src='http://www.billerickson.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4627</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Sat, 24 Sep 2011 17:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4627</guid>
		<description>It looks like Thesis has changed the name of that div. Instead of .custom #archive_info, try .custom #archive_intro</description>
		<content:encoded><![CDATA[<p>It looks like Thesis has changed the name of that div. Instead of .custom #archive_info, try .custom #archive_intro</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darya</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4624</link>
		<dc:creator>Darya</dc:creator>
		<pubDate>Sat, 24 Sep 2011 03:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4624</guid>
		<description>Dear Bill, 
I simply cant for the life of me figure out how to get rid of the Category Titles on my Category Pages. I have the title &quot;PHOTOS&quot; below my header and above the post here: http://izoominka.com/category/photos/ - I&#039;d like to get rid of it!!!  I&#039;ve pasted the code: .custom #archive_info {display:none;} into my custom.css, but it does not work.   I use Thesis 1.8 with Wordpress 3.1.    Praps there is another solution - I couldn&#039;t find anything online.  Hope you can help.</description>
		<content:encoded><![CDATA[<p>Dear Bill,<br />
I simply cant for the life of me figure out how to get rid of the Category Titles on my Category Pages. I have the title &#8220;PHOTOS&#8221; below my header and above the post here: <a href="http://izoominka.com/category/photos/" rel="nofollow">http://izoominka.com/category/photos/</a> &#8211; I&#8217;d like to get rid of it!!!  I&#8217;ve pasted the code: .custom #archive_info {display:none;} into my custom.css, but it does not work.   I use Thesis 1.8 with WordPress 3.1.    Praps there is another solution &#8211; I couldn&#8217;t find anything online.  Hope you can help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Haroun Kola</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4577</link>
		<dc:creator>Haroun Kola</dc:creator>
		<pubDate>Tue, 13 Sep 2011 13:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4577</guid>
		<description>Thanks for this, its exactly what a client wants me to do.
It would be great if StudioPress introduces this to Genesis too :)</description>
		<content:encoded><![CDATA[<p>Thanks for this, its exactly what a client wants me to do.<br />
It would be great if StudioPress introduces this to Genesis too <img src='http://www.billerickson.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4305</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Tue, 26 Jul 2011 13:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4305</guid>
		<description>@Audrey, I don&#039;t think so. It&#039;s probably best to manually write the HTML for that in a function and attach it to the top of the page.

Create a file called category.php, then put this in it:

&lt;pre&gt;
&lt;?php

add_action(&#039;genesis_before_loop&#039;, &#039;be_category_info&#039;);
function be_category_info() {
if(is_category(&#039;category-name&#039;)):
echo &#039;put info about Category Name here&#039;;
elseif(is_category(&#039;another-category&#039;)):
echo &#039;put info about Another Category here&#039;;
endif;
}

genesis();
?&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@Audrey, I don&#8217;t think so. It&#8217;s probably best to manually write the HTML for that in a function and attach it to the top of the page.</p>
<p>Create a file called category.php, then put this in it:</p>
<pre>
< ?php

add_action('genesis_before_loop', 'be_category_info');
function be_category_info() {
if(is_category('category-name')):
echo 'put info about Category Name here';
elseif(is_category('another-category')):
echo 'put info about Another Category here';
endif;
}

genesis();
?></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audrey</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4304</link>
		<dc:creator>Audrey</dc:creator>
		<pubDate>Tue, 26 Jul 2011 12:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4304</guid>
		<description>Sorry to keep asking more questions on this, but had one more question. Will the category description allow images and several paragraphs of text? Looking to do something similar to SugarRae does with her category pages (through thesis). Thanks for your help - it&#039;s much appreciated!</description>
		<content:encoded><![CDATA[<p>Sorry to keep asking more questions on this, but had one more question. Will the category description allow images and several paragraphs of text? Looking to do something similar to SugarRae does with her category pages (through thesis). Thanks for your help &#8211; it&#8217;s much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4299</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Mon, 25 Jul 2011 17:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4299</guid>
		<description>Yes, it will show up at the top of the page in a div called &quot;taxonomy-description&quot;. It will use the category title and category description, NOT the meta title and meta description, which is also editable from this screen.</description>
		<content:encoded><![CDATA[<p>Yes, it will show up at the top of the page in a div called &#8220;taxonomy-description&#8221;. It will use the category title and category description, NOT the meta title and meta description, which is also editable from this screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audrey</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4298</link>
		<dc:creator>Audrey</dc:creator>
		<pubDate>Mon, 25 Jul 2011 17:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4298</guid>
		<description>So this title and description (e.g., introduction) will appear on the category page when it is viewed. This isn&#039;t just meta data. Is that correct? Thanks for your help with this.</description>
		<content:encoded><![CDATA[<p>So this title and description (e.g., introduction) will appear on the category page when it is viewed. This isn&#8217;t just meta data. Is that correct? Thanks for your help with this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4290</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Sat, 23 Jul 2011 16:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4290</guid>
		<description>Yes, if you go to Posts &gt; Categories and click on a Category, you&#039;ll be able to provide a title and description to be displayed at the top.</description>
		<content:encoded><![CDATA[<p>Yes, if you go to Posts > Categories and click on a Category, you&#8217;ll be able to provide a title and description to be displayed at the top.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audrey</title>
		<link>http://www.billerickson.net/custom-headers-category-page-thesis-wordpress/comment-page-1/#comment-4289</link>
		<dc:creator>Audrey</dc:creator>
		<pubDate>Sat, 23 Jul 2011 16:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1639#comment-4289</guid>
		<description>Do you know if it&#039;s possible to add custom headers and content to category pages using Genesis?</description>
		<content:encoded><![CDATA[<p>Do you know if it&#8217;s possible to add custom headers and content to category pages using Genesis?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

