<?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: How To: Create a Custom Page Template</title>
	<atom:link href="http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html/feed" rel="self" type="application/rss+xml" />
	<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html</link>
	<description>Power WordPress user; Thesis, Genesis, and Headway Developer</description>
	<lastBuildDate>Wed, 01 Sep 2010 20:27:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Greg Rickaby</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2811</link>
		<dc:creator>Greg Rickaby</dc:creator>
		<pubDate>Tue, 17 Aug 2010 13:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2811</guid>
		<description>I wish it were, but it&#039;s not possible using this technique.</description>
		<content:encoded><![CDATA[<p>I wish it were, but it&#8217;s not possible using this technique.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O.C. Search Consulting</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2793</link>
		<dc:creator>O.C. Search Consulting</dc:creator>
		<pubDate>Thu, 12 Aug 2010 00:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2793</guid>
		<description>Thanks for this technique, I&#039;ve used it three time so far with no problems. I have one question though - My clients would like to edit their home page content inside the Wordpress admin and NOT by having to edit home.php. Is there anyway to apply this same technique but make the home page content editable from the WP administration panel (e.g. edit the &quot;home&quot; page)?</description>
		<content:encoded><![CDATA[<p>Thanks for this technique, I&#8217;ve used it three time so far with no problems. I have one question though &#8211; My clients would like to edit their home page content inside the WordPress admin and NOT by having to edit home.php. Is there anyway to apply this same technique but make the home page content editable from the WP administration panel (e.g. edit the &#8220;home&#8221; page)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seo68</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2518</link>
		<dc:creator>Seo68</dc:creator>
		<pubDate>Fri, 04 Jun 2010 10:32:50 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2518</guid>
		<description>Nice post, i use it to custom my site
My Site:
&lt;a href=&quot;http://www.seo68.net&quot; rel=&quot;nofollow&quot;&gt;D?ch v? SEO, Qu?ng bá Web&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Nice post, i use it to custom my site<br />
My Site:<br />
<a href="http://www.seo68.net" rel="nofollow">D?ch v? SEO, Qu?ng bá Web</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Rickaby</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2484</link>
		<dc:creator>Greg Rickaby</dc:creator>
		<pubDate>Fri, 21 May 2010 13:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2484</guid>
		<description>Use conditional tags! :) Copy &amp; paste the code below into custom_functions.php

The code below says, &quot;IF this is Page ID 2, then print home.css, ELSEIF this is Page ID 3, print about.css&quot;. This will put a .css file in the WP_HEAD hook.

&lt;pre&gt;&lt;code&gt;
// Header Scripts
function header_scripts_html() {
if ( is_page(&#039;2&#039;) ) { ?&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo(&#039;template_url&#039;);?&gt;/custom/home.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
&lt;?php }	elseif ( is_page(&#039;3&#039;) ) { ?&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo(&#039;template_url&#039;);?&gt;/custom/about.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
&lt;?php }
add_action(&#039;wp_head&#039;,&#039;header_scripts_html&#039;);
&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Use conditional tags! <img src='http://gregrickaby.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Copy &#038; paste the code below into custom_functions.php</p>
<p>The code below says, &#8220;IF this is Page ID 2, then print home.css, ELSEIF this is Page ID 3, print about.css&#8221;. This will put a .css file in the WP_HEAD hook.</p>
<pre><code>
// Header Scripts
function header_scripts_html() {
if ( is_page('2') ) { ?&gt;
&lt;link rel="stylesheet" href="&lt;?php bloginfo('template_url');?>/custom/home.css" type="text/css" media="screen, projection" /&gt;
&lt;?php }	elseif ( is_page('3') ) { ?&gt;
&lt;link rel="stylesheet" href="&lt;?php bloginfo('template_url');?&gt;/custom/about.css" type="text/css" media="screen, projection" /&gt;
&lt;?php }
add_action('wp_head','header_scripts_html');
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Rickaby</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2483</link>
		<dc:creator>Greg Rickaby</dc:creator>
		<pubDate>Fri, 21 May 2010 13:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2483</guid>
		<description>Hey Justin - It won&#039;t matter how many columns you make Thesis. The custom_template will always override and fill the entire width of the Content Box.</description>
		<content:encoded><![CDATA[<p>Hey Justin &#8211; It won&#8217;t matter how many columns you make Thesis. The custom_template will always override and fill the entire width of the Content Box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Long</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2448</link>
		<dc:creator>Justin Long</dc:creator>
		<pubDate>Thu, 13 May 2010 18:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2448</guid>
		<description>Ok, this worked for me UNTIL I set the site as a whole to have a 2-column format. I want to have two different formats: the home page is my custom design (a specialized 3 column format) and then the post pages are a 2-column format. What do I need to change? My home page (http://www.justinlong.org) is shoving the third column on the bottom of the 2nd, trying to put the sidebar in.</description>
		<content:encoded><![CDATA[<p>Ok, this worked for me UNTIL I set the site as a whole to have a 2-column format. I want to have two different formats: the home page is my custom design (a specialized 3 column format) and then the post pages are a 2-column format. What do I need to change? My home page (<a href="http://www.justinlong.org" rel="nofollow">http://www.justinlong.org</a>) is shoving the third column on the bottom of the 2nd, trying to put the sidebar in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Rickaby</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2339</link>
		<dc:creator>Greg Rickaby</dc:creator>
		<pubDate>Wed, 28 Apr 2010 15:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2339</guid>
		<description>God Bless conditional tags, good work...this is what being a Thesis &quot;Pro&quot; is all about.</description>
		<content:encoded><![CDATA[<p>God Bless conditional tags, good work&#8230;this is what being a Thesis &#8220;Pro&#8221; is all about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2338</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Wed, 28 Apr 2010 15:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2338</guid>
		<description>Really? I&#039;m running 2.92 and it seems to be running fine. I might give your tutorial a try though if I run into problems with it. Since it&#039;s working OK now I have so many other things I need to dedicate time to.

By the way, I got the template working! I changed the function in custom_functions.php a little...replaced &quot;else&quot; with an &quot;else if&quot; statement and just specified each page. Also changed the !is_page and went with is_page() &#124;&#124; is_front_page(). 

Seems to like this now. Thanks for your replies! Great site.</description>
		<content:encoded><![CDATA[<p>Really? I&#8217;m running 2.92 and it seems to be running fine. I might give your tutorial a try though if I run into problems with it. Since it&#8217;s working OK now I have so many other things I need to dedicate time to.</p>
<p>By the way, I got the template working! I changed the function in custom_functions.php a little&#8230;replaced &#8220;else&#8221; with an &#8220;else if&#8221; statement and just specified each page. Also changed the !is_page and went with is_page() || is_front_page(). </p>
<p>Seems to like this now. Thanks for your replies! Great site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Rickaby</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2336</link>
		<dc:creator>Greg Rickaby</dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2336</guid>
		<description>FCG is a hunk-o-shit. It&#039;s still only Wordpress 2.7 compatible. Did you try my other tutorial on how to make your own Featured Slider? http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html</description>
		<content:encoded><![CDATA[<p>FCG is a hunk-o-shit. It&#8217;s still only WordPress 2.7 compatible. Did you try my other tutorial on how to make your own Featured Slider? <a href="http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html" rel="nofollow">http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nadav</title>
		<link>http://gregrickaby.com/2010/01/how-to-create-a-custom-page-template.html#comment-2322</link>
		<dc:creator>Nadav</dc:creator>
		<pubDate>Tue, 27 Apr 2010 17:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://gregrickaby.com/?p=3281#comment-2322</guid>
		<description>I love the tutorial.  I have a question though.  I want to use a background image that is 10px x 500px called bghome.png for the home page, and a different 10 x 500 images for the internal pages, called bgother.png.  How do I put it into the CSS that the home page should used use bghome.png, and the internal pages use bgother.png as the background?  Could I used an if then statement?  This is a bit past my level of expertise.  I don&#039;t know how to code it.  If you could help me out I would be forever appreciative!

Thanks,

Nadav</description>
		<content:encoded><![CDATA[<p>I love the tutorial.  I have a question though.  I want to use a background image that is 10px x 500px called bghome.png for the home page, and a different 10 x 500 images for the internal pages, called bgother.png.  How do I put it into the CSS that the home page should used use bghome.png, and the internal pages use bgother.png as the background?  Could I used an if then statement?  This is a bit past my level of expertise.  I don&#8217;t know how to code it.  If you could help me out I would be forever appreciative!</p>
<p>Thanks,</p>
<p>Nadav</p>
]]></content:encoded>
	</item>
</channel>
</rss>
