<?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: Wordpress 2.1.3 Breaks is_home()</title>
	<atom:link href="http://www.lildude.co.uk/wordpress-213-breaks-is_home/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lildude.co.uk/wordpress-213-breaks-is_home/</link>
	<description>Solaris, Unix, Linux, PHP, Webdev, etc; It's all discussed here</description>
	<pubDate>Fri, 29 Aug 2008 17:39:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Colin</title>
		<link>http://www.lildude.co.uk/wordpress-213-breaks-is_home/#comment-4734</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Sat, 26 Jan 2008 17:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.lildude.co.uk/2007/04/wordpress-213-breaks-is_home/#comment-4734</guid>
		<description>I changed my theme code to use a new instance of the &lt;code&gt;WP_Query&lt;/code&gt; method instead of &lt;code&gt;query_posts&lt;/code&gt; as follows:

&lt;pre lang='php'&gt;
$my_query = new WP_Query("cat=$tmpcat&#038;showposts=3");
while ($my_query-&gt;have_posts()) {
    $my_query-&gt;the_post(); 
    [... other code here ...]
}
&lt;/pre&gt;

I set $tmpcat to the relevant category number elsewhere.</description>
		<content:encoded><![CDATA[<p>I changed my theme code to use a new instance of the <code>WP_Query</code> method instead of <code>query_posts</code> as follows:</p>
<pre lang='php'>
$my_query = new WP_Query("cat=$tmpcat&#038;showposts=3");
while ($my_query->have_posts()) {
    $my_query->the_post();
    [... other code here ...]
}
</pre>
<p>I set $tmpcat to the relevant category number elsewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David McDonald</title>
		<link>http://www.lildude.co.uk/wordpress-213-breaks-is_home/#comment-4719</link>
		<dc:creator>David McDonald</dc:creator>
		<pubDate>Fri, 25 Jan 2008 08:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.lildude.co.uk/2007/04/wordpress-213-breaks-is_home/#comment-4719</guid>
		<description>I would be interested to know how you resolved this ...</description>
		<content:encoded><![CDATA[<p>I would be interested to know how you resolved this &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
