<?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>Webdevtuts &#187; category</title>
	<atom:link href="http://www.webdevtuts.net/tag/category/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevtuts.net</link>
	<description>Making tutorials fun and easy!</description>
	<lastBuildDate>Mon, 06 Sep 2010 17:54:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress: How to show most recent posts from a specific category</title>
		<link>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/</link>
		<comments>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/#comments</comments>
		<pubDate>Mon, 24 May 2010 01:35:52 +0000</pubDate>
		<dc:creator>Marcell</dc:creator>
				<category><![CDATA[quicktips]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[specific]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1246</guid>
		<description><![CDATA[so I decided to write a quick tip for you guys.  In this quick tip you will learn how to show your recent post from a specific category using a simple Wordpress hack.]]></description>
			<content:encoded><![CDATA[<p>Ok so today I came across a client who wanted to show their recent posts in the sidebar but only from a specific category. I completed the job and later thought to myself that this might be very useful to the Webdevtuts community so I decided to write a quick tip for you guys.  In this quick tip you will learn how to show your recent post from a specific category using a simple WordPress hack.</p>
<h2>The Code</h2>
<p>Copy and paste the code below and I will explain it below. </p>
<pre>
<code>
&lt;?php $recent = new WP_Query(&quot;cat=26&amp;showposts=10&quot;); while($recent-&gt;have_posts()) : $recent-&gt;the_post();?&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile; ?&gt;
<!--formatted--></code>
</pre>
<p>So basically the code above is telling WordPress to get category 26 most recent post and to show 10 post at the max(Can be higher or lower). To make the code work you will need to place it inside of a ul and li tag. Hope this works for you all. If you have a question leave a comment below and I will answer them. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find WordPress category ID</title>
		<link>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/</link>
		<comments>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 02:57:14 +0000</pubDate>
		<dc:creator>Marcell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[id]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=421</guid>
		<description><![CDATA[Just a few months ago I found myself frustrated with wordpress because I could not find the category id. It took me hours to actually figure out where it was actually located. After I found the category id I felt like I wasted 4 hours of my life, so to save 4 hours of your [...]]]></description>
			<content:encoded><![CDATA[<p>Just a few months ago I found myself frustrated with wordpress because I could not find the category id. It took me hours to actually figure out where it was actually located. After I found the category id I felt like I wasted 4 hours of my life, so to save 4 hours of your life I will show you how you can find the worpress category id.</p>
<p><b>Note: <i>Make sure you do not have permalinks set to default or you will not see the category id</i></b></p>
<p>If permalink is set to default click on any category page and there is where you should find your category id.</p>
<p><img src="http://www.webdevtuts.net/wp-content/uploads/2009/09/cateid.jpg"  alt="Category Id"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
