<?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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; categories</title>
	<atom:link href="http://wpgarage.com/tag/categories/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Thu, 08 Jul 2010 15:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exclude Categories from Feed, Archives, Search, and Home page in WordPress</title>
		<link>http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/</link>
		<comments>http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 06:10:42 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=611</guid>
		<description><![CDATA[We often find ourselves looking for the best and easiest way to exclude categories or pages from the navigation menu, the WordPress loop, the category list, the feed, the search, and/or the archive. It&#8217;s so easy to forget one of these elements and accidentally let that category slip into the blogstream. We actually wrote about [...]]]></description>
			<content:encoded><![CDATA[<p>We often find ourselves looking for the best and easiest way to exclude categories or pages from the navigation menu, the WordPress loop, the category list, the feed, the search, and/or the archive. It&#8217;s so easy to forget one of these elements and accidentally let that category slip into the blogstream. We actually wrote about a few <a title="Exclude categories from certain pages with WordPress plugins" href="http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/">WordPress plugins that exclude categories</a> two years ago, but it&#8217;s definitely time to revisit this issue.</p>
<p>Recently, Miriam found an AMAZING plugin, <a href="http://wordpress.org/extend/plugins/simply-exclude/">Simply Exclude</a> by Paul Menard, which is basically excluding heaven&#8230; if there is such a thing.</p>
<p><img class="alignnone size-full wp-image-612" title="Exclude categories WordPress" src="http://wpgarage.com/wp-content/uploads/2010/01/simple_exclude_wp.png" alt="Exclude categories WordPress" width="400" height="98" /></p>
<h2>Advanced Category Excluder vs. Simply Exclude</h2>
<p>You may have come across the <a href="http://wordpress.org/extend/plugins/advanced-category-excluder/">Advanced Category Excluder</a> plugin, and wonder why we didn&#8217;t use that one. Here&#8217;s why:</p>
<p><strong>Advanced Category Excluder (ACE) vs.  Simply Exclude:</strong></p>
<ul>
<li>Advanced Category Excluder conflicts with the <a title="Exclude Pages plugin" href="http://wordpress.org/extend/plugins/exclude-pages/">Exclude Pages plugin</a> (described below) which excludes pages  from the nav bar. Simple Exclude does not. When I activated it ACE all the pages that had been excluded with the Exclude Pages plugin appeared on the nav bar.</li>
<li>ACE also offers you to exclude Pages, which is so annoying since you have to go through a long list of all the pages on your site to see which you want to exclude, and they appear in long lists without any indication of parent pages and sub-pages. Also, there&#8217;s no easy way to exclude pages when you are adding or editing a page.</li>
<li>With ACE you have to first publish a post in a category, and only then will that category appear in the list of categories for exclusion. This means that if you want a category to not appear in the RSS feed etc., your first post in that category has to.</li>
</ul>
<h2>How to manually exclude categories in the theme files</h2>
<p>And here are a few tips on how to exclude categories manually from the feed and the loop if you still prefer some good ol&#8217; fashioned manual labor.</p>
<p><strong>How to Manually Exclude a Category from a RSS feed</strong></p>
<p>Place the following code in your functions.php file replacing 12 with your category and commas for additional categories. Tip from <a href="http://web-kreation.com/index.php/wordpress/4-ways-to-exclude-wordpress-category-from-rss-feeds/">Web Kreation.</a></p>
<p><strong> </strong></p>
<blockquote><p><strong>function</strong> myFeedExcluder($query) {</p>
<p>if ($query-&gt;is_feed) {</p>
<p>$query-&gt;set(&#8216;cat&#8217;,'-12&#8242;);</p>
<p>}</p>
<p>return $query;</p>
<p>}</p>
<p>add_filter(&#8216;pre_get_posts&#8217;,'myFeedExcluder&#8217;);</p></blockquote>
<p><strong>How to Manually Exclude a Category in Feedburner</strong></p>
<p>Under Edit Feed Details add a ?cat=-93 or whatever the category ID number is so it comes out like:  <a href="http://ejewishphilanthropy.com/feed?cat=-93">http://domain.com/feed?cat=-93</a></p>
<p><strong>How to Manually Exclude a Category from the Loop</strong></p>
<p>Add this code <strong>BEFORE </strong>the loop and change 52 to whatever category you want to exclude</p>
<blockquote><p>&lt;?php query_posts(&#8217;showposts=2&amp;cat=-52&#8242;); ?&gt;</p></blockquote>
<h2>Bonus: Easily Exclude Pages</h2>
<p>Since we&#8217;re discussing excluding stuff from your WordPress blog, here&#8217;s a related plugin that we love called <a href="http://wordpress.org/extend/plugins/exclude-pages/">Exclude Pages</a> by Simon Wheatley. It&#8217;s easy to use and great to give clients for excluding pages from their navigation menu. Exclude Pages adds a checkbox on the edit Page page that users can click to select to exclude the Page they are working on from any place that lists all Pages, like the navigation bar.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;desc=We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;t=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;link=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;body=Link: http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;srcUrl=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;srcTitle=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;snippet=We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;summary=We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&amp;selection=We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/&amp;title=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/+&quot;Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Fexclude-categories-from-feed-archives-search-and-home-page-in-wordpress%2F&amp;t=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Exclude+Categories+from+Feed%2C+Archives%2C+Search%2C+and+Home+page+in+WordPress+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Exclude%20Categories%20from%20Feed%2C%20Archives%2C%20Search%2C%20and%20Home%20page%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20often%20find%20ourselves%20looking%20for%20the%20best%20and%20easiest%20way%20to%20exclude%20categories%20or%20pages%20from%20the%20navigation%20menu%2C%20the%20WordPress%20loop%2C%20the%20category%20list%2C%20the%20feed%2C%20the%20search%2C%20and%2For%20the%20archive.%20It%27s%20so%20easy%20to%20forget%20one%20of%20these%20elements%20and%20accidentally%20let%20that%20category%20slip%20into%20the%20blogstr" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/exclude-categories-from-feed-archives-search-and-home-page-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use WP-Sticky WordPress plugin to easily create feature or &#8220;sticky&#8221; posts</title>
		<link>http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/</link>
		<comments>http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 01:57:32 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/</guid>
		<description><![CDATA[The WP-Sticky WordPress plugin allows you to easily choose to &#8220;stick&#8221; certain posts at the top of your blog. This can also be done via code, as I explained in a post a few months ago where I wrote about some code that you can add to your index.php template file that will keep the [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://wordpress.org/extend/plugins/wp-sticky/" title="WP-Sticky WordPress plugin">WP-Sticky WordPress plugin</a> allows you to easily choose to &#8220;stick&#8221; certain posts at the top of your blog. This can also be done via code, as I explained in a post a few months ago where <a href="http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/" title="Creating a feature post or sticky post in a WordPress blog">I wrote about some code</a> that you can add to your index.php template file that will keep the latest post in your feature category at the top of your homepage. However, both the plugin and the code have advantages and disadvantages.</p>
<p>The coding method has the following advantages:</p>
<ol>
<li>By putting all your best posts in one category, you can easily highlight these posts in a number of places, like in the sidebar or on its own category page, and of course as a feature article.</li>
<li>You can give the feature post its own styling, like a different background color, which helps it stand out even more.</li>
<li>You don&#8217;t need a plugin.</li>
</ol>
<p>However, this method also has the following disadvantages:</p>
<ol>
<li>You need to create a unique category for your feature posts. Sometimes you just want to highlight certain posts without putting them in their own category. Also, your features posts will end up needing two instead of one: &#8220;Feature,&#8221; and another category that really describes the type of article.</li>
<li>With the code I gave, the feature post will appear at the top of every main page on your blog. What I mean is that if you click on &#8220;previous entries&#8221; or something like that at the bottom of the first page of your blog, the feature post will still appear at the top on the second page. This can be confusing to readers who will wonder if they have actually browsed to a new page.</li>
<li>You need to hack your template file, which isn&#8217;t for everybody.</li>
</ol>
<p>So I decided to try out another option, and settled on <a href="http://wordpress.org/extend/plugins/wp-sticky/" title="WP-Sticky">WP-Sticky</a> by Lester Chan. The explanation on the plugin page and in the <a href="http://lesterchan.net/wordpress/readme/wp-sticky.html" title="WP-Sticky Readme">readme file</a> is not clear, but I eventually came across a better explanation <a href="http://lesterchan.net/wordpress/2007/02/25/wp-sticky-new-ideas/" title="WP-Sticky New Ideas">here</a>.</p>
<p>After installing the plugin, it creates an additional box on the Write Post page at the bottom of the right-hand sidebar called Post Sticky Status. There, you have three options: Announcement, Sticky, and Normal.</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/02/wp-sticky.png" alt="WP-Sticky WordPress plugin" /></p>
<p>If you select <strong>Announcement</strong>, that post will stay at the top of your blog forever, or at least until you define another post as an Announcement or change the post&#8217;s status to <strong>Normal</strong>. If you select <strong>Sticky</strong>, the post will stay at the top of your blog for the duration of the day on which you posted it, after which it will return to its place in the chronological order. This is good if you post multiple posts on one day, but want to highlight one of them by sticking it to the top of your blog.</p>
<p><em>Update February 20, 2008: Announcements can be styled! Here&#8217;s how:</em></p>
<p>You can style your feature posts as follows:</p>
<ol>
<li>Find the line in your index.php file that says the following:<br />
<code>&lt;div class="post"&gt;</code><br />
Note that it may say something a bit different, like it may have a different class name. Basically, it&#8217;s the code that appears before all the content related template tags in the loop, somewhere around line 13.</li>
<li>Replace that line with the following:<br />
<code>&lt;div class="post"&lt;?php if (is_announcement()) {echo " id="announcement"";} ?&gt;&gt;</code><br />
That code tells WordPress that if the post is an Announcement post, it should have a class of &#8220;post&#8221; and an id of &#8220;announcement.&#8221; This way the post keeps the styling of &#8220;post&#8221; and gets additional styling of &#8220;announcement.</li>
<li>Add the following style to your style.css file:<br />
<code>#announcement {}</code><br />
Put in the squiggly brackets whatever styles you want. Make the title a different size, color, give it a different background color, even add images like a &#8220;Feature&#8221; badge.</li>
</ol>
<p>The disadvantages to the WP-Sticky WordPress plugin are:</p>
<ol>
<li><strike>You cannot give Announcement or Sticky posts their own styling. </strike></li>
<li>You need to use a plugin.</li>
</ol>
<p><a href="http://wordpress.org/extend/plugins/wp-sticky/" title="WP-Sticky Plugin">WP-Sticky Plugin</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;desc=The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;t=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;link=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;body=Link: http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;srcUrl=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;srcTitle=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;snippet=The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;summary=The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&amp;selection=The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/&amp;title=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/+&quot;Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Fuse-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts%2F&amp;t=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Use+WP-Sticky+WordPress+plugin+to+easily+create+feature+or+%22sticky%22+posts+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Use%20WP-Sticky%20WordPress%20plugin%20to%20easily%20create%20feature%20or%20%22sticky%22%20posts%22&amp;body=Link: http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20WP-Sticky%20WordPress%20plugin%20allows%20you%20to%20easily%20choose%20to%20%22stick%22%20certain%20posts%20at%20the%20top%20of%20your%20blog.%20This%20can%20also%20be%20done%20via%20code%2C%20as%20I%20explained%20in%20a%20post%20a%20few%20months%20ago%20where%20I%20wrote%20about%20some%20code%20that%20you%20can%20add%20to%20your%20index.php%20template%20file%20that%20will%20keep%20the%20latest%20post%20in%20your" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/use-wp-sticky-wordpress-plugin-to-easily-create-feature-or-sticky-posts/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Display WordPress categories in a horizontal dropdown menu</title>
		<link>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/</link>
		<comments>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 09:59:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Shorties]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/</guid>
		<description><![CDATA[Anthology of Ideas shares his method for creating a horizontal drop-down menu for categories, involving the use of CSS and Javascript.
Displaying WordPress categories in a horizontal dropdown menu




		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Add this to Google Reader
		
		
			Share [...]]]></description>
			<content:encoded><![CDATA[<p>Anthology of Ideas shares his method for creating a horizontal drop-down menu for categories, involving the use of CSS and Javascript.</p>
<p><a href="http://anthologyoi.com/wordpress/displaying-wordpress-categories-in-a-horizontal-dropdown-menu.html">Displaying WordPress categories in a horizontal dropdown menu</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;desc=Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;t=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;link=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;body=Link: http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;srcUrl=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;srcTitle=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;snippet=Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;summary=Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu&amp;selection=Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;title=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/+&quot;Display+WordPress+categories+in+a+horizontal+dropdown+menu&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fshorties%2Fdisplay-wordpress-categories-in-a-horizontal-dropdown-menu%2F&amp;t=Display+WordPress+categories+in+a+horizontal+dropdown+menu" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Display+WordPress+categories+in+a+horizontal+dropdown+menu+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Display%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu%22&amp;body=Link: http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Anthology%20of%20Ideas%20shares%20his%20method%20for%20creating%20a%20horizontal%20drop-down%20menu%20for%20categories%2C%20involving%20the%20use%20of%20CSS%20and%20Javascript.%0A%0ADisplaying%20WordPress%20categories%20in%20a%20horizontal%20dropdown%20menu" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apply different themes to different categories with Wordpress Themed Categories Plugin</title>
		<link>http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/</link>
		<comments>http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 08:42:43 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/</guid>
		<description><![CDATA[I&#8217;ve never come across a situation where I would need this feature, but I&#8217;d like to have this on record in case it ever comes up. Mike has developed a WordPress plugin, Themed Categories that allows the user to select different uploaded themes for different categories. According to the comments, his version doesn&#8217;t work with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never come across a situation where I would need this feature, but I&#8217;d like to have this on record in case it ever comes up. Mike has developed a WordPress plugin, <a href="http://download.mikelopez.info/2006/10/17/wordpress-themed-categories-plugin/" title="WordPress Themed Categories Plugin">Themed Categories</a> that allows the user to select different uploaded themes for different categories. According to the comments, his version doesn&#8217;t work with WordPress version 2.3, so someone named <a href="http://www.gschmarri.org/">Kalle</a> made the necessary changes and the modified plugin can be downloaded <a href="http://www.gschmarri.org/wp-content/uploads/plugins/themed-categories-23.zip" title="WordPress Themed Categories Plugin">here</a> (direct link to zip download).</p>
<p><a href="http://download.mikelopez.info/2006/10/17/wordpress-themed-categories-plugin/">Wordpress Themed Categories Plugin</a><a href="http://www.gschmarri.org/wp-content/uploads/plugins/themed-categories-23.zip"><br />
WordPress Themed Categories Plugin for 2.3 (direct link to zip download)<br />
</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;desc=I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;t=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;link=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;body=Link: http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;srcUrl=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;srcTitle=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;snippet=I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;summary=I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&amp;selection=I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/&amp;title=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/+&quot;Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Fapply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin%2F&amp;t=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+Plugin" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Apply+different+themes+to+different+categories+with+Wordpress+Themed+Categories+%5B..%5D+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Apply%20different%20themes%20to%20different%20categories%20with%20Wordpress%20Themed%20Categories%20Plugin%22&amp;body=Link: http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20never%20come%20across%20a%20situation%20where%20I%20would%20need%20this%20feature%2C%20but%20I%27d%20like%20to%20have%20this%20on%20record%20in%20case%20it%20ever%20comes%20up.%20Mike%20has%20developed%20a%20WordPress%20plugin%2C%20Themed%20Categories%20that%20allows%20the%20user%20to%20select%20different%20uploaded%20themes%20for%20different%20categories.%20According%20to%20the%20comments%2C%20his" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/apply-different-themes-to-different-categories-with-wordpress-themed-categories-plugin/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Exclude categories from certain pages with WordPress plugins</title>
		<link>http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/</link>
		<comments>http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 08:28:50 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/</guid>
		<description><![CDATA[There are many situations where you want to make sure that certain categories only appear on some pages, and not on others. Here are a few WordPress plugins that can help you do this without having to hack your template files:
Front Page Excluded Categories WordPress plugin &#8211; this plugin enables you to exclude posts from [...]]]></description>
			<content:encoded><![CDATA[<p>There are many situations where you want to make sure that certain categories only appear on some pages, and not on others. Here are a few WordPress plugins that can help you do this without having to hack your template files:</p>
<p><strong><a href="http://wordpress.org/extend/plugins/front-page-excluded-categories/" title="Front Page Excluded Categories">Front Page Excluded Categories WordPress plugin</a></strong> &#8211; this plugin enables you to exclude posts from certain categories from your <em>front page</em>. This is <a href="http://wpgarage.com/wordpress-as-cms/display-posts-from-specific-categories-on-a-page/" title="Display posts from specific categories on a Page">possible by hard coding your template files</a> as well, but for those who want to give others the ability to do this easily, or who just don&#8217;t want to mess with their template files, this is a good solution.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/advanced-category-excluder/" title="Advanced Category Excluder">Advanced Category Excluder WordPress plugin</a></strong> &#8211; this plugin gives you more flexibility over where categories appear. Here, you have access to modifying categories for five different pages on your blog: archive, home, rss posts, rss comments and search. It currently does not work for tag pages.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;desc=There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;t=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;link=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;body=Link: http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;srcUrl=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;srcTitle=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;snippet=There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;summary=There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins&amp;selection=There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/&amp;title=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/+&quot;Exclude+categories+from+certain+pages+with+WordPress+plugins&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Ffront-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page%2F&amp;t=Exclude+categories+from+certain+pages+with+WordPress+plugins" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Exclude+categories+from+certain+pages+with+WordPress+plugins+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Exclude%20categories%20from%20certain%20pages%20with%20WordPress%20plugins%22&amp;body=Link: http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20many%20situations%20where%20you%20want%20to%20make%20sure%20that%20certain%20categories%20only%20appear%20on%20some%20pages%2C%20and%20not%20on%20others.%20Here%20are%20a%20few%20WordPress%20plugins%20that%20can%20help%20you%20do%20this%20without%20having%20to%20hack%20your%20template%20files%3A%0A%0AFront%20Page%20Excluded%20Categories%20WordPress%20plugin%20-%20this%20plugin%20enables%20yo" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/front-page-excluded-categories-wordpress-plugin-for-excluding-categories-from-home-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Display posts from specific categories on a Page</title>
		<link>http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/</link>
		<comments>http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 12:09:59 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/wordpress-as-cms/display-posts-from-specific-categories-on-a-page/</guid>
		<description><![CDATA[You may want to display posts from a specific category on the homepage or other pages of your site. For example, you might want to have a box that displays the latest three posts from your News category, or have links to your latest podcasts.
In a previous post, I gave the code that would display [...]]]></description>
			<content:encoded><![CDATA[<p>You may want to display posts from a specific category on the homepage or other pages of your site. For example, you might want to have a box that displays the latest three posts from your News category, or have links to your latest podcasts.</p>
<p><a href="http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/" title="Display a selected number of posts from one category">In a previous post</a>, I gave the code that would display the latest posts from a specific category <strong>in the sidebar</strong>. However, that code will not work in the main content part of the page. In order to display posts from a specific category in the main content section of a page, you need to use a variation on the <a href="http://codex.wordpress.org/The_Loop" title="The Loop - WordPress Codex">WordPress Loop</a>, which is as follows:<br />
<code>&lt;?php query_posts('category_name=special_cat&amp;showposts=10'); ?&gt;<br />
&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;!-- Do special_cat stuff... --&gt;<br />
&lt;?php endwhile;?&gt;</code></p>
<p><code></code><br />
To use this code, change the category name to whatever the name is of the relevant category, and change the number of posts displayed from 10 to whatever number you want. Where it says <code>&lt;!-- Do special_cat stuff... --&gt;</code>, put in all the code you usually use to display the title, date, category, etc. &#8211; whatever you need.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page&amp;desc=You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;t=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Display+posts+from+specific+categories+on+a+Page&amp;link=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Display+posts+from+specific+categories+on+a+Page&amp;body=Link: http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page&amp;srcUrl=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;srcTitle=Display+posts+from+specific+categories+on+a+Page&amp;snippet=You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page&amp;summary=You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Display+posts+from+specific+categories+on+a+Page&amp;url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page&amp;selection=You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/&amp;title=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/+&quot;Display+posts+from+specific+categories+on+a+Page&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fdisplay-posts-from-specific-categories-on-a-page%2F&amp;t=Display+posts+from+specific+categories+on+a+Page" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Display+posts+from+specific+categories+on+a+Page+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Display%20posts%20from%20specific%20categories%20on%20a%20Page%22&amp;body=Link: http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20may%20want%20to%20display%20posts%20from%20a%20specific%20category%20on%20the%20homepage%20or%20other%20pages%20of%20your%20site.%20For%20example%2C%20you%20might%20want%20to%20have%20a%20box%20that%20displays%20the%20latest%20three%20posts%20from%20your%20News%20category%2C%20or%20have%20links%20to%20your%20latest%20podcasts.%0A%0AIn%20a%20previous%20post%2C%20I%20gave%20the%20code%20that%20would%20display%20t" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/display-posts-from-specific-categories-on-a-page/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>Creating a feature post or sticky post in a WordPress blog</title>
		<link>http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/</link>
		<comments>http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 14:19:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/themes/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/</guid>
		<description><![CDATA[To get a post from a specific category to appear at the top of the page above the rest of the posts, and to only change when a new post from that particular category is added, use the following code:
&#60;?php /*?&#62;&#60;?php $my_query = new WP_Query('category_name=featured&#38;showposts=1');
while ($my_query-&#62;have_posts()) : $my_query-&#62;the_post();
$do_not_duplicate = $post-&#62;ID;?&#62;
&#60;div class="featureItem"&#62;
&#60;h1&#62;Feature: &#60;a href="&#60;?php the_permalink() ?&#62;" [...]]]></description>
			<content:encoded><![CDATA[<p>To get a post from a specific category to appear at the top of the page above the rest of the posts, and to only change when a new post from that particular category is added, use the following code:</p>
<p><code>&lt;?php /*?&gt;&lt;?php $my_query = new WP_Query('category_name=featured&amp;showposts=1');</p>
<p>while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();</p>
<p>$do_not_duplicate = $post-&gt;ID;?&gt;</p>
<p>&lt;div class="featureItem"&gt;</p>
<p>&lt;h1&gt;Feature: &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h1&gt;<br />
&lt;p&gt;&lt;?php the_time('F j, Y'); ?&gt; • By &lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;br /&gt;Tags: &lt;?php STP_PostTags(); ?&gt; | &lt;?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?&gt;&lt;/p&gt;<br />
&lt;?php the_content('Read more»'); ?&gt;<br />
&lt;/p&gt;</p>
<p>&lt;!--</p>
<p>&lt;?php trackback_rdf(); ?&gt;</p>
<p>--&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;?php endwhile; ?&gt;</p>
<p>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); if( $post-&gt;ID == $do_not_duplicate )</p>
<p>continue;?&gt;&lt;?php */?&gt;</code></p>
<p>Obviously, many things above can be changed, like how the titles, categories, tags, etc. are displayed.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;desc=To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;t=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;link=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;body=Link: http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;srcUrl=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;srcTitle=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;snippet=To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;summary=To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&amp;selection=To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/&amp;title=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/+&quot;Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fcreating-a-feature-post-or-sticky-post-in-a-wordpress-blog%2F&amp;t=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+a+feature+post+or+sticky+post+in+a+WordPress+blog+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Creating%20a%20feature%20post%20or%20sticky%20post%20in%20a%20WordPress%20blog%22&amp;body=Link: http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A To%20get%20a%20post%20from%20a%20specific%20category%20to%20appear%20at%20the%20top%20of%20the%20page%20above%20the%20rest%20of%20the%20posts%2C%20and%20to%20only%20change%20when%20a%20new%20post%20from%20that%20particular%20category%20is%20added%2C%20use%20the%20following%20code%3A%0A%0A%26lt%3B%3Fphp%20%2F%2A%3F%26gt%3B%26lt%3B%3Fphp%20%24my_query%20%3D%20new%20WP_Query%28%27category_name%3Dfeatured%26amp%3Bshowposts%3D1%27%29%3B%0A%0Awhile" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/creating-a-feature-post-or-sticky-post-in-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Display a selected number of posts from one category in the sidebar</title>
		<link>http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/</link>
		<comments>http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 14:08:10 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/</guid>
		<description><![CDATA[&#60;?php$postlist = get_posts('category=6&#38;numberposts=5');
foreach ($postlist as $post)  &#62;&#60;li&#62;&#60;a href="&#60;?php the_permalink(); ?&#62;"&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/li&#62;&#60;?php endforeach; ?&#62;
Use this in the sidebar to display a defined number of posts from a specified category. Where it says &#8220;category=6&#8243; replace the 6 with the relevant category ID number, and where it says &#8220;numberposts=5&#8243; replace the 5 with the number of [...]]]></description>
			<content:encoded><![CDATA[<p><code>&lt;?php$postlist = get_posts('category=6&amp;numberposts=5');<br />
foreach ($postlist as $post) <img src='http://wpgarage.com/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' /> &gt;&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;&lt;?php endforeach; ?&gt;</code></p>
<p>Use this in the sidebar to display a defined number of posts from a specified category. Where it says &#8220;category=6&#8243; replace the 6 with the relevant category ID number, and where it says &#8220;numberposts=5&#8243; replace the 5 with the number of posts that you want to appear.</p>
<p><em>Update Nov. 7, 2007:</em></p>
<p>The above code snippet can also be used to display a page in the sidebar. This is is handy if you want to create an editable chunk of text in the sidebar without using widgets. So, for example, if you want to show an excerpt of your About page in your sidebar, use the following code:<br />
<code><br />
&lt;?php$postlist = get_posts('id=54');<br />
foreach ($postlist as $post) <img src='http://wpgarage.com/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' /> &gt;&lt;?php the_excerpt(); ?&gt;<br />
&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;read more&lt;/a&gt;</code></p>
<p>Where it says id=54, replace 54 with the id number of the page you want to display.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;desc=%26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;t=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;link=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;body=Link: http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;srcUrl=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;srcTitle=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;snippet=%26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;summary=%26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&amp;selection=%26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/&amp;title=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/+&quot;Display+a+selected+number+of+posts+from+one+category+in+the+sidebar&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fdisplay-a-selected-number-of-posts-from-one-category%2F&amp;t=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Display+a+selected+number+of+posts+from+one+category+in+the+sidebar+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Display%20a%20selected%20number%20of%20posts%20from%20one%20category%20in%20the%20sidebar%22&amp;body=Link: http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %26lt%3B%3Fphp%24postlist%20%3D%20get_posts%28%27category%3D6%26amp%3Bnumberposts%3D5%27%29%3B%0Aforeach%20%28%24postlist%20as%20%24post%29%20%3A%3F%26gt%3B%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%20%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%26lt%3B%3Fphp%20endforeach%3B%20%3F%26gt%3B%0A%0AUse%20this%20in%20the%20sidebar%20to%20display%20a%20defined%20number%20of%20posts%20from%20a%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/display-a-selected-number-of-posts-from-one-category/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Giving different styles to different WordPress categories</title>
		<link>http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/</link>
		<comments>http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 09:02:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/giving-different-styles-to-different-wordpress-categories/</guid>
		<description><![CDATA[WordPress allows you to give different styles to different categories in a range of ways. You can style a category page: this means that every category page can have its own unique style. For example, let&#8217;s say you have a site about vegetables, where every vegetable is a category. You can style the Tomato category [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org" title="WordPress">WordPress</a> allows you to give different styles to different categories in a range of ways. You can style a category page: this means that every category page can have its own unique style. For example, let&#8217;s say you have a site about vegetables, where every vegetable is a category. You can style the Tomato category page so that the headers are all in red, the Carrot category page so that the headers are all orange, etc.</p>
<p>You can also make sure that when you visit a single post page in a specific category, that page also has a unique style. So if someone clicks on your post about Delicious Tomato Sauce, the headers on that page can be styled red, while the single post page for the article on Creamy Carrot Soup will have orange headers.</p>
<p>And finally, I just found out that you can style posts on the index, home page, search results page, or any page with posts from multiple categories, with their own style depending on their category.</p>
<p>Let&#8217;s go through each styling method one-by-one:</p>
<p><strong>Styling Category pages</strong></p>
<ol>
<li>Find out what the id number is of the category you want to style. To do so, go to Manage &gt; Categories, find the category in question, and look at the left-hand column. Let&#8217;s say that your Tomato category has an id of 5.</li>
<li>Create a file called category-x.php, where x is the id number of the category. In the case of the Tomato category, your file will be called category-5.php. The best way to do this is to copy you index.php file, and rename it category-5.php.</li>
<li> Now modify your file at will. For example, if you want all <code>h2</code> text to be red, find where it says <code>&lt;h2&gt;</code> in your file, and replace it with something like <code>&lt;h2 class="tomato-red"&gt;</code>. Then, in your style.css file, create a class called tomato-red, and give it the right styles. In this case, you would add the following to your style sheet:<br />
<code>.tomato-red {<br />
color: #FF0000;<br />
}</code></li>
<li>The method described above in Step 3 is ok if you want to customize the styles for one or two categories. But if you have more than that, it can become annoying to manage a zillion category-x.php files. <a href="http://ryanhellyer.net/" title="Ryan Hellyer">Ryan Hellyer</a>, a devoted WordPressGargage reader and most frequent commenter, gave the following more efficient way of doing this. He said to create one category.php file, and put the following code in it:<br />
<code>&lt;h2<br />
&lt;?php<br />
if (is_category('tomato'))<br />
{echo  'class="tomato-red"';}<br />
if (is_category('cucumber'))<br />
{echo  'class="cucumber-green"';}<br />
?&gt;</code><br />
Etc. Brilliant!</li>
</ol>
<p><strong>Styling single post pages for different categories</strong></p>
<p>See my previous post titled &#8220;<a href="http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/" rel="bookmark">Displaying single post pages differently in specific categories&#8221;</a> for detailed instructions on styling single post pages for different categories.  It&#8217;s all there.</p>
<p><strong>Giving posts from different categories different styles on a multi-category page</strong></p>
<p>I love how there&#8217;s always something new to learn about WordPress! <a href="http://ifacethoughts.net/">Abhijit Nadgouda</a> has written a post on Lorelle&#8217;s blog explaining how you can <a href="http://lorelle.wordpress.com/2007/09/06/using-wordpress-categories-to-style-posts/" title="Using WordPress Categories To Style Posts">apply unique styles to posts in different categories</a>. He explains how you can use the category slugs to create styles that can be dynamically called to give different styles to posts from certain categories.</p>
<p>Why is this useful? Let&#8217;s take our vegetable site example. By giving each category its own style, a reader on the home page could easily identify all posts about tomatoes by picking out the posts with red headers, and carrot posts would have orange headers. This could also create a very colorful and eye-catching page.</p>
<p>Another way to use is if you have a category of feature articles. You want these articles to stand out in some way, either by giving them some kind of badge, or a background color, for example. By using this method, you can ensure that your feature articles are always more prominent, and don&#8217;t get lost in the crowd.</p>
<p>So there you have it &#8211; three ways to make sure your posts in different categories stand out all across your site. Hurray for WordPress!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories&amp;desc=WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;t=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Giving+different+styles+to+different+WordPress+categories&amp;link=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Giving+different+styles+to+different+WordPress+categories&amp;body=Link: http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories&amp;srcUrl=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;srcTitle=Giving+different+styles+to+different+WordPress+categories&amp;snippet=WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories&amp;summary=WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Giving+different+styles+to+different+WordPress+categories&amp;url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories&amp;selection=WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/&amp;title=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/+&quot;Giving+different+styles+to+different+WordPress+categories&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Ftips%2Fgiving-different-styles-to-different-wordpress-categories%2F&amp;t=Giving+different+styles+to+different+WordPress+categories" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Giving+different+styles+to+different+WordPress+categories+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Giving%20different%20styles%20to%20different%20WordPress%20categories%22&amp;body=Link: http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A WordPress%20allows%20you%20to%20give%20different%20styles%20to%20different%20categories%20in%20a%20range%20of%20ways.%20You%20can%20style%20a%20category%20page%3A%20this%20means%20that%20every%20category%20page%20can%20have%20its%20own%20unique%20style.%20For%20example%2C%20let%27s%20say%20you%20have%20a%20site%20about%20vegetables%2C%20where%20every%20vegetable%20is%20a%20category.%20You%20can%20style%20the%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/giving-different-styles-to-different-wordpress-categories/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Displaying single post pages differently in specific categories</title>
		<link>http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/</link>
		<comments>http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 12:13:16 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/</guid>
		<description><![CDATA[You may have certain categories in your WordPress blog that you want to appear differently than other categories. For example, what if you have a category called &#8220;Tomatoes&#8221; and a category called &#8220;Cucumbers,&#8221; and you want the titles of every post in the Tomatoes category to be red, and the titles in the Cucumbers category [...]]]></description>
			<content:encoded><![CDATA[<p>You may have certain categories in your WordPress blog that you want to appear differently than other categories. For example, what if you have a category called &#8220;Tomatoes&#8221; and a category called &#8220;Cucumbers,&#8221; and you want the titles of every post in the Tomatoes category to be red, and the titles in the Cucumbers category to be green?</p>
<p>There are a few plugins that can help you with this, but they didn&#8217;t work so smoothly. The best solution I have found is one provided by Lorelle on her <a href="http://www.cameraontheroad.com/" title="Taking Your Camera on the Road">Taking Your Camera on the Road</a> blog. In her post titled &#8220;<a href="http://www.cameraontheroad.com/05/27/different-category-different-look-creating-multiple-single-post-looks-for-different-categories/" rel="bookmark" title="Different Category - Different Look: Creating Multiple Single Posts Looks for Different Categories" accesskey="s">Different Category &#8211; Different Look: Creating Multiple Single Posts Looks for Different Categories,</a>&#8221; she gives the following directions:</p>
<blockquote><p>We began by making two back up copies of the <tt>single.php</tt> page called <tt>single1.php</tt> and <tt>single.2.php</tt>.</p>
<p>Inside of the original <tt>single.php</tt>, delete everything and replace it with this:</p>
<p><code>&lt;?php<br />
$post = $wp_query-&gt;post;<br />
if ( in_category('9') ) {<br />
include(TEMPLATEPATH . '/single2.php');<br />
} else {<br />
include(TEMPLATEPATH . '/single1.php');<br />
}<br />
?&gt;</code></p>
<p>In the most simple terms, the PHP code issues a query that says &#8220;Check the post. If the post is in category ID number 9, display <tt>single2.php</tt>. If not in category ID number 9, display <tt>single1.php</tt>.&#8221;</p>
<p>In the <tt>in_category()</tt>, we set the category ID number to 9, the one that holds all of my web page design articles and experiments.</p></blockquote>
<p>So basically, your main single.php file becomes a conditional file that tells WordPress which template file to use in certain categories. Lorelle also gives the following code you can put in the single.php file that will allow you to create multiple styles for multiple categories:</p>
<p><code>&lt;?php<br />
$post = $wp_query-&gt;post;<br />
if ( in_category('9') ) {<br />
include(TEMPLATEPATH . '/single9.php');<br />
elseif ( in_category('12') ) {<br />
include(TEMPLATEPATH . '/single12.php');<br />
elseif ( in_category('42') ) {<br />
include(TEMPLATEPATH . '/single42.php');<br />
} else {<br />
include(TEMPLATEPATH . '/single1.php');<br />
}<br />
?&gt;</code></p>
<p>Now you have to get the styles you want to apply to the correct category. Do the following for every category you want to have a certain style for:</p>
<ol>
<li>Create a new style sheet and call it style-9.css (9 is the category ID, but your category ID will likely differ. You can still call it style-9.css, but this is confusing!) If the changes you are making are minor, like changing certain colors or fonts, you should probably just copy style.css and rename it to style-9.css. In that style sheet, create the styles that you want, so for example if you want all h2 items to be red, make those changes in your new style sheet.</li>
<li>Style sheets are called in your header.php file. Which means that we need to create a header file that will call your new style sheet. So copy your header.php and rename the copy header-9.php (or whatever you want).</li>
<li>In your new header-9.php file, find the lines that look something like this:<br />
<code>&lt;link rel="stylesheet" href="&lt;?php bloginfo('template_directory'); ?&gt;/style.css" type="text/css" media="screen" /&gt;</code><br />
and change where it says <code>style.css</code> to <code>style-9.css</code>.</li>
<li>Then, in your single2.php file, replace the following line (which is probably the first line):<br />
<code>&lt;?php get_header(); ?&gt;</code><br />
with this<br />
<code>&lt;?php include ('header-hebrew.php'); ?&gt;</code></li>
</ol>
<p>Do this for every category. If you have a lot of categories you want to appear with different styles, there&#8217;s probably some conditional PHP that you can use. Being of little PHP knowledge, I don&#8217;t know what this code would be, but the above works quite nicely for people like me with little-to-no knowledge of PHP and only one or two categories that need modifying.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories&amp;desc=You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;t=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Displaying+single+post+pages+differently+in+specific+categories&amp;link=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Displaying+single+post+pages+differently+in+specific+categories&amp;body=Link: http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories&amp;srcUrl=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;srcTitle=Displaying+single+post+pages+differently+in+specific+categories&amp;snippet=You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories&amp;summary=You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Displaying+single+post+pages+differently+in+specific+categories&amp;url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories&amp;selection=You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/&amp;title=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/+&quot;Displaying+single+post+pages+differently+in+specific+categories&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Ftips%2Fdisplaying-single-post-pages-differently-in-specific-categories%2F&amp;t=Displaying+single+post+pages+differently+in+specific+categories" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Displaying+single+post+pages+differently+in+specific+categories+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Displaying%20single%20post%20pages%20differently%20in%20specific%20categories%22&amp;body=Link: http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20may%20have%20certain%20categories%20in%20your%20WordPress%20blog%20that%20you%20want%20to%20appear%20differently%20than%20other%20categories.%20For%20example%2C%20what%20if%20you%20have%20a%20category%20called%20%22Tomatoes%22%20and%20a%20category%20called%20%22Cucumbers%2C%22%20and%20you%20want%20the%20titles%20of%20every%20post%20in%20the%20Tomatoes%20category%20to%20be%20red%2C%20and%20the%20titles%20in%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/displaying-single-post-pages-differently-in-specific-categories/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>
