<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WordPress: Using a custom home page</title>
	<atom:link href="http://jeffgran.com/139/blog/wordpress-custom-home-page/feed" rel="self" type="application/rss+xml" />
	<link>http://jeffgran.com/139/blog/wordpress-custom-home-page</link>
	<description>Artist, Designer, Developer</description>
	<lastBuildDate>Mon, 28 Nov 2011 21:53:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Darcel Cadle</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-324</link>
		<dc:creator>Darcel Cadle</dc:creator>
		<pubDate>Wed, 19 Jan 2011 03:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-324</guid>
		<description>what very good go through.</description>
		<content:encoded><![CDATA[<p>what very good go through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Young</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-309</link>
		<dc:creator>Geoff Young</dc:creator>
		<pubDate>Sat, 03 Jul 2010 00:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-309</guid>
		<description>Hey Jeff,
Can you put up or email me all the coding for home.php that you used in this example?
Thanks,
Geoff Young</description>
		<content:encoded><![CDATA[<p>Hey Jeff,<br />
Can you put up or email me all the coding for home.php that you used in this example?<br />
Thanks,<br />
Geoff Young</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kornelije Sajler</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-133</link>
		<dc:creator>Kornelije Sajler</dc:creator>
		<pubDate>Fri, 24 Jul 2009 21:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-133</guid>
		<description>Very interesting post, and very interesting override of index.php with home.php, thank you!</description>
		<content:encoded><![CDATA[<p>Very interesting post, and very interesting override of index.php with home.php, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-108</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 08 Jul 2009 17:25:24 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-108</guid>
		<description>Glad you found it useful, David.  And thanks for posting your additions!  Cheers.</description>
		<content:encoded><![CDATA[<p>Glad you found it useful, David.  And thanks for posting your additions!  Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Rogers</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-106</link>
		<dc:creator>David Rogers</dc:creator>
		<pubDate>Wed, 08 Jul 2009 03:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-106</guid>
		<description>Jeff,

Thanks for the additional insight; I was attempting the same thing with my own template but couldn&#039;t get the paging correct. It&#039;s worthwhile to note that I had to use the following to get the posts to appear in WP 2.7.x:

&lt;pre&gt;&lt;code&gt;
if ( is_page(&#039;blog&#039;) ) query_posts(array( &#039;post_type&#039; =&gt; &#039;post&#039;, &#039;pagename&#039; =&gt; null, &#039;paged&#039; =&gt; get_query_var(&#039;paged&#039;) ));
&lt;/code&gt;&lt;/pre&gt;

This removed the &quot;pagename&quot; and &quot;post_type&quot; parameter from the query AND (correctly) added the &quot;paged&quot; parameter to the query. Thanks again.</description>
		<content:encoded><![CDATA[<p>Jeff,</p>
<p>Thanks for the additional insight; I was attempting the same thing with my own template but couldn&#8217;t get the paging correct. It&#8217;s worthwhile to note that I had to use the following to get the posts to appear in WP 2.7.x:</p>
<pre><code>
if ( is_page('blog') ) query_posts(array( 'post_type' =&gt; 'post', 'pagename' =&gt; null, 'paged' =&gt; get_query_var('paged') ));
</code></pre>
<p>This removed the &#8220;pagename&#8221; and &#8220;post_type&#8221; parameter from the query AND (correctly) added the &#8220;paged&#8221; parameter to the query. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Gran</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-72</link>
		<dc:creator>Jeff Gran</dc:creator>
		<pubDate>Fri, 19 Jun 2009 00:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-72</guid>
		<description>Hi David, thanks for the comment.  It&#039;s hard to tell what&#039;s causing that without seeing how your template is set up.  Are you using wp_list_pages() for the nav links?  Is your home link also showing the blog post listing, same as the blog link?  Have you set up home.php to be the home link?</description>
		<content:encoded><![CDATA[<p>Hi David, thanks for the comment.  It&#8217;s hard to tell what&#8217;s causing that without seeing how your template is set up.  Are you using wp_list_pages() for the nav links?  Is your home link also showing the blog post listing, same as the blog link?  Have you set up home.php to be the home link?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-68</link>
		<dc:creator>david</dc:creator>
		<pubDate>Thu, 18 Jun 2009 17:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-68</guid>
		<description>Thanks for sharing this. Just one minor problem. When I click on Blog. My home link is displayed as &quot;current_page_item&quot; is CSS Style. IS there something I&#039;m overlooking?</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this. Just one minor problem. When I click on Blog. My home link is displayed as &#8220;current_page_item&#8221; is CSS Style. IS there something I&#8217;m overlooking?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Gran Wordpress Using a custom home page &#124; internet marketing tools</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-53</link>
		<dc:creator>Jeff Gran Wordpress Using a custom home page &#124; internet marketing tools</dc:creator>
		<pubDate>Tue, 16 Jun 2009 04:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-53</guid>
		<description>[...] Jeff Gran Wordpress Using a custom home page   Posted by root 50 minutes ago (http://jeffgran.com)        May 19 2009 leave a comment click here to cancel reply name required email required website comment powered by wordpress org        Discuss&#160;  &#124;&#160; Bury &#124;&#160;    News &#124; Jeff Gran Wordpress Using a custom home page [...]</description>
		<content:encoded><![CDATA[<p>[...] Jeff Gran WordPress Using a custom home page   Posted by root 50 minutes ago (<a href="http://jeffgran.com" rel="nofollow">http://jeffgran.com</a>)        May 19 2009 leave a comment click here to cancel reply name required email required website comment powered by wordpress org        Discuss&nbsp;  |&nbsp; Bury |&nbsp;    News | Jeff Gran WordPress Using a custom home page [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JaneRadriges</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-50</link>
		<dc:creator>JaneRadriges</dc:creator>
		<pubDate>Sat, 13 Jun 2009 18:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-50</guid>
		<description>The best information i have found exactly here. Keep going Thank you</description>
		<content:encoded><![CDATA[<p>The best information i have found exactly here. Keep going Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AndrewBoldman</title>
		<link>http://jeffgran.com/139/blog/wordpress-custom-home-page/comment-page-1#comment-27</link>
		<dc:creator>AndrewBoldman</dc:creator>
		<pubDate>Thu, 04 Jun 2009 20:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://jeffgran.com/?p=139#comment-27</guid>
		<description>Hi, cool post. I have been wondering about this topic,so thanks for writing.</description>
		<content:encoded><![CDATA[<p>Hi, cool post. I have been wondering about this topic,so thanks for writing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

