<?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 I used a WordPress Child Theme To Redesign My Blog</title>
	<atom:link href="http://themeshaper.com/functions-php-wordpress-child-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://themeshaper.com/functions-php-wordpress-child-themes/</link>
	<description>Shaping WordPress Themes</description>
	<lastBuildDate>Mon, 06 Sep 2010 05:55:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Anna</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-57297</link>
		<dc:creator>Anna</dc:creator>
		<pubDate>Mon, 12 Jul 2010 11:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-57297</guid>
		<description>happy to find your posts about child themes! I am now working with my first child theme for twenty ten and your help saves me a lot of time! cheers</description>
		<content:encoded><![CDATA[<p>happy to find your posts about child themes! I am now working with my first child theme for twenty ten and your help saves me a lot of time! cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Those Darn Kids: WordPress Child Themes - CogDogBlog</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-54752</link>
		<dc:creator>Those Darn Kids: WordPress Child Themes - CogDogBlog</dc:creator>
		<pubDate>Sun, 06 Jun 2010 14:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-54752</guid>
		<description>[...] Theme Shaper&#8217;s Child Theme Basics and How I used a WordPress Child Theme To Redesign My Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Theme Shaper&#8217;s Child Theme Basics and How I used a WordPress Child Theme To Redesign My Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 10 amazing wordpress themes for church websites on studiowhiz.com</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-53580</link>
		<dc:creator>10 amazing wordpress themes for church websites on studiowhiz.com</dc:creator>
		<pubDate>Thu, 20 May 2010 00:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-53580</guid>
		<description>[...] If you are wanting to make your own Wordpress theme for your church? Go for it, just don&#8217;t waste heaps of time recoding the same old stuff over and over &#8211; I&#8217;d highly recommend the use of a &#8220;framework&#8221; to take much of the grunt lifting out of your development process. Themeshaper have a great article on how to use a framework to craft your own Wordpress theme [...]</description>
		<content:encoded><![CDATA[<p>[...] If you are wanting to make your own WordPress theme for your church? Go for it, just don&#8217;t waste heaps of time recoding the same old stuff over and over &#8211; I&#8217;d highly recommend the use of a &#8220;framework&#8221; to take much of the grunt lifting out of your development process. Themeshaper have a great article on how to use a framework to craft your own WordPress theme [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Child-Theme Challenge &#124; ClassiPress</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-52152</link>
		<dc:creator>Child-Theme Challenge &#124; ClassiPress</dc:creator>
		<pubDate>Thu, 29 Apr 2010 09:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-52152</guid>
		<description>[...] So what are you waiting for and start those engines. For those who are still new and need some help, I recommend starting with these two articles. [...]</description>
		<content:encoded><![CDATA[<p>[...] So what are you waiting for and start those engines. For those who are still new and need some help, I recommend starting with these two articles. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 100+ Resources for WordPress Theme Developers &#124; BloggingBlogging.com</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-51832</link>
		<dc:creator>100+ Resources for WordPress Theme Developers &#124; BloggingBlogging.com</dc:creator>
		<pubDate>Sun, 25 Apr 2010 07:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-51832</guid>
		<description>[...] How I Used a WordPress Child Theme to Re-Design My Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] How I Used a WordPress Child Theme to Re-Design My Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bronwyn</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-51631</link>
		<dc:creator>Bronwyn</dc:creator>
		<pubDate>Thu, 22 Apr 2010 20:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-51631</guid>
		<description>Please fix your code sample for the IE-only stylesheet!  It has a couple small but critical errors that I just spent about an hour tracking down and fixing. If the pattern and number of spaces, dashes etc. in the conditional comment tags is wrong, other browsers will use the IE stylesheet too.  Here is a sample that works:

&lt;code&gt; 
function childtheme_iefix() { ?&gt;
		&lt;!--[if lt IE 8]&gt;--&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/ie.css&quot; /&gt;
		
	&lt;?php }

add_action(&#039;wp_head&#039;, &#039;childtheme_iefix&#039;);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Please fix your code sample for the IE-only stylesheet!  It has a couple small but critical errors that I just spent about an hour tracking down and fixing. If the pattern and number of spaces, dashes etc. in the conditional comment tags is wrong, other browsers will use the IE stylesheet too.  Here is a sample that works:</p>
<p><code><br />
function childtheme_iefix() { ?&gt;<br />
		<!--[if lt IE 8]&gt;--><br />
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/ie.css" /&gt;</p>
<p>	&lt;?php }</p>
<p>add_action(&#039;wp_head&#039;, &#039;childtheme_iefix&#039;);<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amber</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-51399</link>
		<dc:creator>amber</dc:creator>
		<pubDate>Mon, 19 Apr 2010 01:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-51399</guid>
		<description>Thanks for the resource! 

I was a little lost at the very start point for creating child themes, but I worked out; 

If I read this other tutorial first at this address:   op111.net/53,
then read this one on this page, I was sorted out! 
Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the resource! </p>
<p>I was a little lost at the very start point for creating child themes, but I worked out; </p>
<p>If I read this other tutorial first at this address:   op111.net/53,<br />
then read this one on this page, I was sorted out!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: my wordpress.org report &#171; P&#38;I WEB Spring 2010</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-51315</link>
		<dc:creator>my wordpress.org report &#171; P&#38;I WEB Spring 2010</dc:creator>
		<pubDate>Sat, 17 Apr 2010 20:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-51315</guid>
		<description>[...] For future reading: Two great resources I found however are: ESSENTIAL READING is this [how to modify WordPress themes the smart way] AND THEN: How I used a WordPress Child Theme to Redesign my blog [...]</description>
		<content:encoded><![CDATA[<p>[...] For future reading: Two great resources I found however are: ESSENTIAL READING is this [how to modify WordPress themes the smart way] AND THEN: How I used a WordPress Child Theme to Redesign my blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Child-Themes für WordPress &#8211; Eine Einführung (Work in Progress) &#124; Netzgeist V3.1</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-50502</link>
		<dc:creator>Child-Themes für WordPress &#8211; Eine Einführung (Work in Progress) &#124; Netzgeist V3.1</dc:creator>
		<pubDate>Sat, 03 Apr 2010 17:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-50502</guid>
		<description>[...] Der Autor des Themes Thematic, Ian Stewart, erläutert wie Child Themes erstellt werden. themeshaper.com/functions-php-wordpress-child-themes Ein weiterer Artikel von Ian Stewart über das Einbinden eigener PHP-Funktionen in das Child [...]</description>
		<content:encoded><![CDATA[<p>[...] Der Autor des Themes Thematic, Ian Stewart, erläutert wie Child Themes erstellt werden. themeshaper.com/functions-php-wordpress-child-themes Ein weiterer Artikel von Ian Stewart über das Einbinden eigener PHP-Funktionen in das Child [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Da import&#226;ncia de conhecer bem o WordPress</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-49821</link>
		<dc:creator>Da import&#226;ncia de conhecer bem o WordPress</dc:creator>
		<pubDate>Mon, 29 Mar 2010 03:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-49821</guid>
		<description>[...] “Child themes“: pra fazer só a parte fácil (o CSS) e criar temas derivados; [...]</description>
		<content:encoded><![CDATA[<p>[...] “Child themes“: pra fazer só a parte fácil (o CSS) e criar temas derivados; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WP references / tutorials &#171; Feet up, eyes closed, head back</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-49639</link>
		<dc:creator>WP references / tutorials &#171; Feet up, eyes closed, head back</dc:creator>
		<pubDate>Thu, 25 Mar 2010 17:43:49 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-49639</guid>
		<description>[...] themeshaper.com/functions-php-wordpress-child-themes &#8211; Another article by the author of Thematic: How to use custom PHP functions in your child theme. [...]</description>
		<content:encoded><![CDATA[<p>[...] themeshaper.com/functions-php-wordpress-child-themes &#8211; Another article by the author of Thematic: How to use custom PHP functions in your child theme. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 20款 WordPress的主题框架及初始资源 &#124; 异次元的乱七八糟</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-46035</link>
		<dc:creator>20款 WordPress的主题框架及初始资源 &#124; 异次元的乱七八糟</dc:creator>
		<pubDate>Mon, 25 Jan 2010 13:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-46035</guid>
		<description>[...] How I used a WordPress Child Theme To Redesign My Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] How I used a WordPress Child Theme To Redesign My Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Stauffer</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-45159</link>
		<dc:creator>Josh Stauffer</dc:creator>
		<pubDate>Wed, 13 Jan 2010 21:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-45159</guid>
		<description>Hey Ian, I&#039;m a little late getting to this post but found it very helpful. I just want to say I am glad your Trac proposal made it through. Excited about the possibilities by using Child themes.

By the way, looks like WangenWeb has moved.

-Josh</description>
		<content:encoded><![CDATA[<p>Hey Ian, I&#8217;m a little late getting to this post but found it very helpful. I just want to say I am glad your Trac proposal made it through. Excited about the possibilities by using Child themes.</p>
<p>By the way, looks like WangenWeb has moved.</p>
<p>-Josh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 10+ Awesome Things I Learned at the Wordcamp Atlanta 2010 &#171; Compassion in Politics: Christian Social Entrepreneurship, Education Innovation, &#38; Base of the Pyramid/BOP Solutions</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-45031</link>
		<dc:creator>10+ Awesome Things I Learned at the Wordcamp Atlanta 2010 &#171; Compassion in Politics: Christian Social Entrepreneurship, Education Innovation, &#38; Base of the Pyramid/BOP Solutions</dc:creator>
		<pubDate>Mon, 11 Jan 2010 22:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-45031</guid>
		<description>[...] The importance of using Parent/child themes for productivity and time saving. 2) Check out Thematic, Themeshaper, Theme Hybrid, Sandbox [...]</description>
		<content:encoded><![CDATA[<p>[...] The importance of using Parent/child themes for productivity and time saving. 2) Check out Thematic, Themeshaper, Theme Hybrid, Sandbox [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2010-01-09</title>
		<link>http://themeshaper.com/functions-php-wordpress-child-themes/comment-page-2/#comment-44822</link>
		<dc:creator>links for 2010-01-09</dc:creator>
		<pubDate>Sat, 09 Jan 2010 09:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://themeshaper.com/?p=82#comment-44822</guid>
		<description>[...] How I used a WordPress Child Theme To Redesign My Blog it&#039;s all about the functions.php (tags: webdev howto templates theme development tutorials) [...]</description>
		<content:encoded><![CDATA[<p>[...] How I used a WordPress Child Theme To Redesign My Blog it&#39;s all about the functions.php (tags: webdev howto templates theme development tutorials) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
