<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Excluding certain categories from your blog main page</title>
	<atom:link href="http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/</link>
	<description>"... tech .... fun .. bizarre ... india .... pictures ..... anything in the world ...."</description>
	<pubDate>Fri, 05 Dec 2008 13:05:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: chaka chaka - wordpress exclude categories from main page</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9854</link>
		<dc:creator>chaka chaka - wordpress exclude categories from main page</dc:creator>
		<pubDate>Tue, 26 Aug 2008 13:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9854</guid>
		<description>[...] i googled this trick. just pop in  &#60;?php query_posts($query_string . &#8220;&#38;cat=-23&#8243;); [...]</description>
		<content:encoded><![CDATA[<p>[...] i googled this trick. just pop in  &lt;?php query_posts($query_string . &#8220;&amp;cat=-23&#8243;); [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9366</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Sat, 19 Jul 2008 05:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9366</guid>
		<description>Hi Mimi, the function that I described works as well. All you have to do is to make sure that you place it on your index.php.</description>
		<content:encoded><![CDATA[<p>Hi Mimi, the function that I described works as well. All you have to do is to make sure that you place it on your index.php.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mimi</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9359</link>
		<dc:creator>Mimi</dc:creator>
		<pubDate>Fri, 18 Jul 2008 22:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9359</guid>
		<description>Hi
I'd just like to point out that there's a problem with the function you provided for method 2. The correct function should be:
&lt;code&gt;&#60;?php if (is_home()) {
query_posts($query_string . "&#38;cat=-3");
}
?&#62;&lt;/code&gt;
Cheers :)</description>
		<content:encoded><![CDATA[<p>Hi<br />
I&#8217;d just like to point out that there&#8217;s a problem with the function you provided for method 2. The correct function should be:<br />
<code>&lt;?php if (is_home()) {<br />
query_posts($query_string . "&amp;cat=-3");<br />
}<br />
?&gt;</code><br />
Cheers <img src='http://blog.gadodia.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Excluding Sponsored Posts From Main Page &#124; Ever After</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9358</link>
		<dc:creator>Excluding Sponsored Posts From Main Page &#124; Ever After</dc:creator>
		<pubDate>Fri, 18 Jul 2008 21:35:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9358</guid>
		<description>[...] Good has a nice post about the 2 methods you could use here, but I&#8217;m just going to breifly go over the method I use today. First, you&#8217;ll need to [...]</description>
		<content:encoded><![CDATA[<p>[...] Good has a nice post about the 2 methods you could use here, but I&#8217;m just going to breifly go over the method I use today. First, you&#8217;ll need to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9194</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Mon, 09 Jun 2008 04:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9194</guid>
		<description>Thanks Meitar for the tip...</description>
		<content:encoded><![CDATA[<p>Thanks Meitar for the tip&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meitar Moscovitz</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9184</link>
		<dc:creator>Meitar Moscovitz</dc:creator>
		<pubDate>Fri, 06 Jun 2008 18:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-9184</guid>
		<description>Sometimes simply excluding a whole category is too broad, and other times the query_posts() function doesn't provide you with the hook you need. In these cases, you can run the original query, note any modifications you need to make, and then create new, modified query and display the results from that one instead. For instance, if you need to exclude posts based on category and, say, the beginning of their title.

I wrote &lt;a href="http://maymay.net/blog/2008/06/06/arbitrarily-exclude-posts-from-displaying-in-wordpress/" rel="nofollow"&gt;instructions with sample code on my own blog&lt;/a&gt; about how to do this.</description>
		<content:encoded><![CDATA[<p>Sometimes simply excluding a whole category is too broad, and other times the query_posts() function doesn&#8217;t provide you with the hook you need. In these cases, you can run the original query, note any modifications you need to make, and then create new, modified query and display the results from that one instead. For instance, if you need to exclude posts based on category and, say, the beginning of their title.</p>
<p>I wrote <a href="http://maymay.net/blog/2008/06/06/arbitrarily-exclude-posts-from-displaying-in-wordpress/" rel="nofollow">instructions with sample code on my own blog</a> about how to do this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8806</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 16 Apr 2008 18:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8806</guid>
		<description>great post, just what i was looking for, thanks homie!</description>
		<content:encoded><![CDATA[<p>great post, just what i was looking for, thanks homie!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8680</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Sun, 30 Mar 2008 07:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8680</guid>
		<description>@Joel, you are most welcome :)</description>
		<content:encoded><![CDATA[<p>@Joel, you are most welcome <img src='http://blog.gadodia.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8677</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Sun, 30 Mar 2008 00:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8677</guid>
		<description>This was EXACTLY what I was looking for, because the recommended technique of calling in_category() threw off the counting, as you point out.  Thanks very much!</description>
		<content:encoded><![CDATA[<p>This was EXACTLY what I was looking for, because the recommended technique of calling in_category() threw off the counting, as you point out.  Thanks very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8317</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Sat, 26 Jan 2008 05:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-8317</guid>
		<description>I like Method 2 but I can't get it to work right... I am using WP 2.3.2 and every method I've tried so far (except method 1) reorders my posts display my very first post at the beginning of my blog and the newest one somewhere in the back... 

I've tried finding answers on the WP board but that's just too unorganized, imo. 

Any ideas? 

Thanks!!!</description>
		<content:encoded><![CDATA[<p>I like Method 2 but I can&#8217;t get it to work right&#8230; I am using WP 2.3.2 and every method I&#8217;ve tried so far (except method 1) reorders my posts display my very first post at the beginning of my blog and the newest one somewhere in the back&#8230; </p>
<p>I&#8217;ve tried finding answers on the WP board but that&#8217;s just too unorganized, imo. </p>
<p>Any ideas? </p>
<p>Thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Honcho</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7956</link>
		<dc:creator>Mike Honcho</dc:creator>
		<pubDate>Sun, 25 Nov 2007 08:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7956</guid>
		<description>php query_posts($query_string . “cat=-5,-6,-4,-7"); ?</description>
		<content:encoded><![CDATA[<p>php query_posts($query_string . “cat=-5,-6,-4,-7&#8243;); ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Honcho</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7955</link>
		<dc:creator>Mike Honcho</dc:creator>
		<pubDate>Sun, 25 Nov 2007 08:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7955</guid>
		<description>sorry, not sure how to post the code here lol

[code][/code]</description>
		<content:encoded><![CDATA[<p>sorry, not sure how to post the code here lol</p>
<p>[code][/code]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Honcho</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7954</link>
		<dc:creator>Mike Honcho</dc:creator>
		<pubDate>Sun, 25 Nov 2007 08:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7954</guid>
		<description>to exclude multi cats just use for example

</description>
		<content:encoded><![CDATA[<p>to exclude multi cats just use for example</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Habitually Good &#187; Blog Archive &#187; All about blogging - tips, tools, and musings</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7005</link>
		<dc:creator>Habitually Good &#187; Blog Archive &#187; All about blogging - tips, tools, and musings</dc:creator>
		<pubDate>Fri, 05 Oct 2007 16:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-7005</guid>
		<description>[...] to generate traffic for your blog. I wrote some tech tips on WordPress customization: How to exclude certain categories from your main page and how to change your permalink structure without breaking the old [...]</description>
		<content:encoded><![CDATA[<p>[...] to generate traffic for your blog. I wrote some tech tips on WordPress customization: How to exclude certain categories from your main page and how to change your permalink structure without breaking the old [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bearthepooh</title>
		<link>http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-6942</link>
		<dc:creator>bearthepooh</dc:creator>
		<pubDate>Wed, 03 Oct 2007 05:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gadodia.net/excluding-certain-categories-from-your-blog-main-page/#comment-6942</guid>
		<description>hi, i have emailed you. hope u'd help. :D</description>
		<content:encoded><![CDATA[<p>hi, i have emailed you. hope u&#8217;d help. <img src='http://blog.gadodia.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
