<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ThemeShaper</title>
	
	<link>http://themeshaper.com</link>
	<description>Experiments in Theme Design</description>
	<pubDate>Mon, 06 Oct 2008 14:19:21 +0000</pubDate>
	
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ThemeShaper" type="application/rss+xml" /><feedburner:emailServiceId>1405209</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>What’s new in Thematic 0.7</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/412733567/</link>
		<comments>http://themeshaper.com/thematic-07/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 12:00:57 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<category><![CDATA[Thematic]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=653</guid>
		<description><![CDATA[Thematic 0.7 has been officially released with two major upgrades that&#8217;ll help you get what you need done with your WordPress blog or site faster and&#160;easier.
Rapid Site Development With Modular&#160;CSS
I&#8217;m doing my best to make Thematic a tool for rapid site development whether you&#8217;re digging into it and using it as the basis for a [...]]]></description>
			<content:encoded><![CDATA[<p>Thematic 0.7 has been officially released with two major upgrades that&#8217;ll help you get what you need done with your WordPress blog or site faster and&nbsp;easier.</p>
<h2>Rapid Site Development With Modular&nbsp;CSS</h2>
<p>I&#8217;m doing my best to make Thematic a tool for rapid site development whether you&#8217;re digging into it and using it as the basis for a custom site design or using it as a theme framework with a WordPress Child Theme. How? By making the CSS completely modular. Let&#8217;s take a look at two of the folders in the <code>library</code> directory of Thematic; <em>layouts</em> and&nbsp;<em>styles</em>.</p>

<div class="wp_syntax"><div class="code"><pre class="text text" style="font-family:monospace;">/layouts
  2c-l-fixed.css
  3c-r-fixed.css
  2c-r-fixed.css
  3c-fixed.css
&nbsp;
/styles
  18px.css
  typography.css
  21px.css
  default.css
  images.css
  plugins.css
  reset.css</pre></div></div>

<p>Each of these files can be imported into the stylesheet of either your Thematic-based theme or Child Theme with the <code>@import</code> rule—or copy-pasted if you want to make changes without having to override the CSS to make structural changes. Simply put, what that means is that you can bring each of these files into play in your stylesheet and rapidly build a WordPress theme by mixing and matching them. And I mean <strong>really</strong> rapidly. For example, here&#8217;s an example of a fully finished 3 column Thematic Child Theme, with a sidebar on either side of the content, that follows the default Thematic color styles—built by you, out of only a few lines of CSS.<span id="more-653"></span></p>

<div class="wp_syntax"><div class="code"><pre class="css css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/*   
Theme Name:  Thematic, 3-column
Theme URI: http://themeshaper.com/
Description: A 3-column version of Thematic
Author: Ian Stewart
Author URI: http://themeshaper.com/
Template: thematic
Version: 1.0
*/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Reset browser defaults */</span>
<span style="color: #a1a100;">@import url('../thematic/library/styles/reset.css');</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Apply basic typography styles */</span>
<span style="color: #a1a100;">@import url('../thematic/library/styles/typography.css');</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Apply a basic 3 column layout */</span>
<span style="color: #a1a100;">@import url('../thematic/library/layouts/3c-fixed.css');</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Apply the default Thematic style */</span>
<span style="color: #a1a100;">@import url('../thematic/library/styles/default.css');</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Apply basic image styles */</span>
<span style="color: #a1a100;">@import url('../thematic/library/styles/images.css');</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Apply styles for popular plugins */</span>
<span style="color: #a1a100;">@import url('../thematic/library/styles/plugins.css');</span></pre></div></div>

<p>That&#8217;s really all there is to it. And if you&#8217;re modifying Thematic instead of building a Child Theme, just take a look at the style.css included with it and start mixing and matching CSS files. <strong>It&#8217;s that&nbsp;easy</strong>.</p>
<p>But what if you want more of a blank template with just enough styles to build a WordPress theme from? I&#8217;ve got you covered there too with 18px.css and 21px.css. Each has just enough CSS styles to produce a blank theme based on a 18px or 21px line-height. Combine them with any of the layout styles included with Thematic—just like in the simple example above, using 18px or 21px instead of default—and you&#8217;ve saved yourself potentially hours of&nbsp;time.</p>
<p>Essentially, I&#8217;ve done all the boring CSS work that&#8217;s required to build 99% of all the WordPress themes you&#8217;ll ever see. You&#8217;re welcome. <img src='http://themeshaper.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>And yes, now that there&#8217;s a <em>default</em> there might be more included styles in the&nbsp;future.</p>
<h2>A Guide To Developing With&nbsp;Thematic</h2>
<p>One thing that&#8217;s really been lacking with Thematic, and really should be included with all good WordPress themes, is a good ReadMe file. That&#8217;s been fixed with version 0.7. I&#8217;ve made it an xHTML file instead of the typical text file so you can <a href="http://wp-themes.com/wp-content/themes/thematic/readme.html">check it out in your&nbsp;browser</a>.</p>
<p>I&#8217;ll be adding a table of contents to it in the future as it inevitably grows. Which should be very soon since it&#8217;s already out of date! I completely forgot to update the list of Thematic Child Themes before I submitted it to the WordPress Themes directory. I&#8217;ll be fixing that in an update which should come in the next couple of&nbsp;weeks.</p>
<h2>Download Thematic and Build Your Own WordPress&nbsp;Theme</h2>
<p>Thematic is completely free and available for download at the <a href="http://wordpress.org/extend/themes/thematic#post-55">WordPress Theme&nbsp;Directory</a>.</p>
<p>For more information about changes to Thematic check out the ThemeShaper forum post, <a href="http://themeshaper.com/forums/topic/changes-in-thematic">Changes in Thematic</a> or browse through the <a href="http://themeshaper.com/tag/thematic/">posts on ThemeShaper tagged Thematic</a> if you want to learn more about what you can do with a <a href="http://themeshaper.com/thematic-for-wordpress/">WordPress Theme&nbsp;Framework</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/how-to-protect-your-wordpress-theme-against-upgrades/" rel="bookmark" title="May 21, 2008">How To Protect Your WordPress Theme Against Upgrades</a></li>

<li><a href="http://themeshaper.com/thematic-version-06-is-out/" rel="bookmark" title="July 26, 2008">Thematic Version 0.6 Is Out</a></li>

<li><a href="http://themeshaper.com/revolution-wordpress-theme-frameworks/" rel="bookmark" title="June 9, 2008">A Revolution in Theming: WordPress Theme Frameworks</a></li>
</ul><!-- Similar Posts took 2.910 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=SPoxm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=SPoxm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=DePJm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=DePJm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=CzIqm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=CzIqm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=b6ZZm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=b6ZZm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/412733567" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/thematic-07/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fthematic-07%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/thematic-07/</feedburner:origLink></item>
		<item>
		<title>Jacob Santos on WordPress Child Themes</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/412117018/</link>
		<comments>http://themeshaper.com/jacob-santos-wordpress-child-themes/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:27:29 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=679</guid>
		<description><![CDATA[WordPress developer Jacob Santos on WordPress Child Themes: WordPress Theme Modifications should be made in Child&#160;Themes.
Similar Posts:Benedict Eastaugh on Child Themes in WordPress 2.7

How To Protect Your WordPress Theme Against Upgrades

A Proposal for Theme Management in WordPress
]]></description>
			<content:encoded><![CDATA[<p>WordPress developer Jacob Santos on WordPress Child Themes: <a href="http://www.santosj.name/web-applications/wordpress-theme-modifications-should-be-made-in-child-themes/">WordPress Theme Modifications should be made in Child&nbsp;Themes</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/benedict-eastaugh-on-child-themes-in-wordpress-27/" rel="bookmark" title="August 9, 2008">Benedict Eastaugh on Child Themes in WordPress 2.7</a></li>

<li><a href="http://themeshaper.com/how-to-protect-your-wordpress-theme-against-upgrades/" rel="bookmark" title="May 21, 2008">How To Protect Your WordPress Theme Against Upgrades</a></li>

<li><a href="http://themeshaper.com/proposal-for-theme-management-in-wordpress/" rel="bookmark" title="April 2, 2008">A Proposal for Theme Management in WordPress</a></li>
</ul><!-- Similar Posts took 2.487 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=dOL4m"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=dOL4m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=9E8xm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=9E8xm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=ReOYm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=ReOYm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=V8Bgm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=V8Bgm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/412117018" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/jacob-santos-wordpress-child-themes/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fjacob-santos-wordpress-child-themes%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/jacob-santos-wordpress-child-themes/</feedburner:origLink></item>
		<item>
		<title>An Interview with Ian Stewart on WordPress Child Themes</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/412012747/</link>
		<comments>http://themeshaper.com/interview-ian-stewart-wordpress-child-themes/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:48:12 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=677</guid>
		<description><![CDATA[If you want more of an introduction to theming your blog or website with WordPress Child Themes you can read my two-part interview with Weblog Tool Collections&#8217; Jeff Chandler on the subject. Part One gives an introduction to the concept with a ridiculously easy tutorial that guides you through making your own Child Theme. Part [...]]]></description>
			<content:encoded><![CDATA[<p>If you want more of an introduction to theming your blog or website with WordPress Child Themes you can read my two-part interview with Weblog Tool Collections&#8217; Jeff Chandler on the subject. <a href="http://weblogtoolscollection.com/archives/2008/10/04/ian-stewart-on-child-themes-part-1/">Part One</a> gives an introduction to the concept with a ridiculously easy tutorial that guides you through making your own Child Theme. <a href="http://weblogtoolscollection.com/archives/2008/10/05/ian-stewart-on-child-themes-part-2/">Part Two</a> goes through some of the business implications of using them with a <a href="http://themeshaper.com/thematic-for-wordpress/">WordPress Theme&nbsp;Framework</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/how-to-create-a-wordpress-child-theme/" rel="bookmark" title="July 18, 2008">How To Create a WordPress Child Theme</a></li>

<li><a href="http://themeshaper.com/wordpress-theme-blank-framework/" rel="bookmark" title="August 28, 2008">Any WordPress Theme Can Be a Blank Framework</a></li>

<li><a href="http://themeshaper.com/revolution-wordpress-theme-frameworks/" rel="bookmark" title="June 9, 2008">A Revolution in Theming: WordPress Theme Frameworks</a></li>
</ul><!-- Similar Posts took 4.321 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=UNw5m"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=UNw5m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=qmK3m"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=qmK3m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=Bjhjm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=Bjhjm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=335hm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=335hm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/412012747" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/interview-ian-stewart-wordpress-child-themes/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Finterview-ian-stewart-wordpress-child-themes%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/interview-ian-stewart-wordpress-child-themes/</feedburner:origLink></item>
		<item>
		<title>The Problem With Child Themes</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/411370038/</link>
		<comments>http://themeshaper.com/problem-child-themes/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 20:48:22 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=656</guid>
		<description><![CDATA[Pat Dryburgh outlines the drawbacks to child themes—which hinder public acceptance and experimentation—that he&#8217;s discovered while working with&#160;Thematic.
Similar Posts:Junction, An Awesome New Thematic Child Theme

Blamatic and Pinkatic for Thematic

Instinct &#038; The Thematic Theme Framework
]]></description>
			<content:encoded><![CDATA[<p>Pat Dryburgh outlines <a href="http://patdryburgh.net/design/the-problem-with-child-themes/">the drawbacks to child themes</a>—which hinder public acceptance and experimentation—that he&#8217;s discovered while working with&nbsp;Thematic.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/junction-an-awesome-new-thematic-child-theme/" rel="bookmark" title="August 20, 2008">Junction, An Awesome New Thematic Child Theme</a></li>

<li><a href="http://themeshaper.com/blamatic-pinkatic-thematic/" rel="bookmark" title="October 1, 2008">Blamatic and Pinkatic for Thematic</a></li>

<li><a href="http://themeshaper.com/instinct-thematic-theme-framework/" rel="bookmark" title="September 25, 2008">Instinct &#038; The Thematic Theme Framework</a></li>
</ul><!-- Similar Posts took 2.422 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=doy0m"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=doy0m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=gijtm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=gijtm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=iqHAm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=iqHAm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=3FL0m"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=3FL0m" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/411370038" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/problem-child-themes/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fproblem-child-themes%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/problem-child-themes/</feedburner:origLink></item>
		<item>
		<title>Blamatic and Pinkatic for Thematic</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/408588371/</link>
		<comments>http://themeshaper.com/blamatic-pinkatic-thematic/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 20:47:56 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=650</guid>
		<description><![CDATA[Pat Dryburgh, creator of the Junction theme, has officially released his latest Thematic Child Theme, Blamatic. You&#8217;re going to want to check this one out. It has a cool background image made up of concentric circles, makes use of sIFR for unique titles and has a nifty footer that slides out of the way. Plus! [...]]]></description>
			<content:encoded><![CDATA[<p>Pat Dryburgh, creator of the <a href="http://patdryburgh.net/junction/">Junction</a> theme, has officially released his latest Thematic Child Theme, Blamatic. You&#8217;re going to want to check this one out. It has a cool background image made up of concentric circles, makes use of sIFR for unique titles and has a nifty footer that slides out of the way. Plus! There&#8217;s a pink version, Pinkatic, just in time for Pink for October. <a href="http://patdryburgh.net/blamatic/">Check out&nbsp;Blamatic</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/wordpress-theme-preview-theseus/" rel="bookmark" title="February 2, 2008">WordPress Theme Preview: Theseus</a></li>

<li><a href="http://themeshaper.com/updates-to-theseus-and-mnml/" rel="bookmark" title="March 25, 2008">Updates to Theseus and MNML</a></li>

<li><a href="http://themeshaper.com/thematic-07/" rel="bookmark" title="October 6, 2008">What&#8217;s new in Thematic 0.7</a></li>
</ul><!-- Similar Posts took 2.459 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=pHfim"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=pHfim" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=ijvim"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=ijvim" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=Eyuvm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=Eyuvm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=lpglm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=lpglm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/408588371" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/blamatic-pinkatic-thematic/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fblamatic-pinkatic-thematic%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/blamatic-pinkatic-thematic/</feedburner:origLink></item>
		<item>
		<title>Brian Gardner Makes Revolution Open Source</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/408293027/</link>
		<comments>http://themeshaper.com/brian-gardner-revolution-open-source/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 14:29:40 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=646</guid>
		<description><![CDATA[Brian Gardner, popularizer of the WordPress Commercial Theme model, has decided to make his popular Revolution theme an open-source project, free and ready to download—effective 12:00 midnight, Friday October&#160;31st.
Similar Posts:The Ethics of WordPress Themes at a Premium

Thematic Version 0.3

3 Google Code Projects That Will Save Your WordPress Theme
]]></description>
			<content:encoded><![CDATA[<p>Brian Gardner, popularizer of the WordPress Commercial Theme model, has decided to make his popular <em>Revolution</em> theme an open-source project, free and ready to download—<a href="http://www.briangardner.com/blog/revolution-going-open-source.htm">effective 12:00 midnight, Friday October&nbsp;31st</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/the-ethics-of-premium-wordpress-themes/" rel="bookmark" title="September 8, 2008">The Ethics of WordPress Themes at a Premium</a></li>

<li><a href="http://themeshaper.com/thematic-version-03/" rel="bookmark" title="May 6, 2008">Thematic Version 0.3</a></li>

<li><a href="http://themeshaper.com/3-google-code-projects-that-will-save-your-wordpress-theme/" rel="bookmark" title="January 27, 2008">3 Google Code Projects That Will Save Your WordPress Theme</a></li>
</ul><!-- Similar Posts took 2.461 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=d9dAm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=d9dAm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=h4LZm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=h4LZm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=knSlm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=knSlm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=DvFzm"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=DvFzm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/408293027" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/brian-gardner-revolution-open-source/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fbrian-gardner-revolution-open-source%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/brian-gardner-revolution-open-source/</feedburner:origLink></item>
		<item>
		<title>Instinct &amp; The Thematic Theme Framework</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/402854621/</link>
		<comments>http://themeshaper.com/instinct-thematic-theme-framework/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 14:46:14 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=642</guid>
		<description><![CDATA[Instinct, makers of the popular WordPress e-Commerce Plugin, have converted their former K2 powered site into a Child Theme for the Thematic Theme Framework (with a little help from me). Check it out and see what you can do with WordPress Child Themes and&#160;Thematic.
Similar Posts:What&#8217;s new in Thematic 0.7

Any WordPress Theme Can Be a Blank [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.instinct.co.nz/">Instinct</a>, makers of the popular <a href="http://www.instinct.co.nz/e-commerce" title="WordPress e-Commerce Plugin">WordPress e-Commerce Plugin</a>, have converted their former K2 powered site into a Child Theme for the <a href="http://themeshaper.com/thematic-for-wordpress/">Thematic Theme Framework</a> (with a little help from me). <a href="http://www.instinct.co.nz/" rel="nofollow">Check it out</a> and see what you can do with WordPress Child Themes and&nbsp;Thematic.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/thematic-07/" rel="bookmark" title="October 6, 2008">What&#8217;s new in Thematic 0.7</a></li>

<li><a href="http://themeshaper.com/wordpress-theme-blank-framework/" rel="bookmark" title="August 28, 2008">Any WordPress Theme Can Be a Blank Framework</a></li>

<li><a href="http://themeshaper.com/revolution-wordpress-theme-frameworks/" rel="bookmark" title="June 9, 2008">A Revolution in Theming: WordPress Theme Frameworks</a></li>
</ul><!-- Similar Posts took 2.478 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=7Rvcl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=7Rvcl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=Q3LDl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=Q3LDl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=i9Ssl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=i9Ssl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=SVexl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=SVexl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/402854621" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/instinct-thematic-theme-framework/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Finstinct-thematic-theme-framework%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/instinct-thematic-theme-framework/</feedburner:origLink></item>
		<item>
		<title>Exploring WordPress Frameworks and Child Themes</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/396461623/</link>
		<comments>http://themeshaper.com/exploring-wordpress-frameworks-and-child-themes/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 18:32:28 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=636</guid>
		<description><![CDATA[Darren Hoyt explains why he&#8217;s interested in WordPress Child Themes in Exploring WordPress Frameworks and Child Themes. He does a great job illustrating why professional designers using WordPress to power sites need to take a serious look at&#160;them.
Similar Posts:A Revolution in Theming: WordPress Theme Frameworks

Use WordPress As a CMS With The Travailler Theme

Any WordPress Theme [...]]]></description>
			<content:encoded><![CDATA[<p>Darren Hoyt explains why he&#8217;s interested in WordPress Child Themes in <a href="http://www.darrenhoyt.com/2008/09/18/exploring-wordpress-frameworks-and-child-themes/">Exploring WordPress Frameworks and Child Themes</a>. He does a great job illustrating why professional designers using WordPress to power sites need to take a <strong>serious</strong> look at&nbsp;them.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/revolution-wordpress-theme-frameworks/" rel="bookmark" title="June 9, 2008">A Revolution in Theming: WordPress Theme Frameworks</a></li>

<li><a href="http://themeshaper.com/use-wordpress-as-cms-travailler-theme/" rel="bookmark" title="July 21, 2008">Use WordPress As a CMS With The Travailler Theme</a></li>

<li><a href="http://themeshaper.com/wordpress-theme-blank-framework/" rel="bookmark" title="August 28, 2008">Any WordPress Theme Can Be a Blank Framework</a></li>
</ul><!-- Similar Posts took 2.498 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=AAjyl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=AAjyl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=MkzVl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=MkzVl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=jlYrl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=jlYrl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=s7ukl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=s7ukl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/396461623" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/exploring-wordpress-frameworks-and-child-themes/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fexploring-wordpress-frameworks-and-child-themes%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/exploring-wordpress-frameworks-and-child-themes/</feedburner:origLink></item>
		<item>
		<title>Starkers for WordPress 2.6.2</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/396444348/</link>
		<comments>http://themeshaper.com/starkers-for-wordpress-262/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 18:30:30 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=634</guid>
		<description><![CDATA[Elliot Jay Stocks has updated and re-released his WordPress starter theme,&#160;Starkers.
Similar Posts:Smart Cache-Busting For Your WordPress Stylesheet

Example Images for Thematic

Changes At ThemeShaper
]]></description>
			<content:encoded><![CDATA[<p>Elliot Jay Stocks has updated and re-released his WordPress starter theme,&nbsp;<a href="http://elliotjaystocks.com/blog/archive/2008/starkers-for-wordpress-262/">Starkers</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/smart-cache-busting-for-your-wordpress-stylesheet/" rel="bookmark" title="September 9, 2008">Smart Cache-Busting For Your WordPress Stylesheet</a></li>

<li><a href="http://themeshaper.com/example-images-for-thematic/" rel="bookmark" title="August 8, 2008">Example Images for Thematic</a></li>

<li><a href="http://themeshaper.com/changes-at-themeshaper/" rel="bookmark" title="April 21, 2008">Changes At ThemeShaper</a></li>
</ul><!-- Similar Posts took 2.439 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=qAkil"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=qAkil" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=7UmNl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=7UmNl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=CN8Yl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=CN8Yl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=Ts3Cl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=Ts3Cl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/396444348" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/starkers-for-wordpress-262/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fstarkers-for-wordpress-262%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/starkers-for-wordpress-262/</feedburner:origLink></item>
		<item>
		<title>New wp_page_menu() API</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/390682704/</link>
		<comments>http://themeshaper.com/new-wp_page_menu-api/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 14:01:04 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=632</guid>
		<description><![CDATA[&#8220;New wp_page_menu() API that creates a menu of pages. Themes will no longer have to do this for themselves.&#8221; Will this make my life easier as a theme developer and WordPress user? Most likely. Thanks,&#160;WordPress.
Similar Posts:A Proposal for Theme Management in WordPress

WordPress Theme Preview: Theseus

The Ultimate WordPress Theme Test
]]></description>
			<content:encoded><![CDATA[<p>&#8220;New <code>wp_page_menu()</code> API that creates a menu of pages. Themes will no longer have to do this for themselves.&#8221; Will this make my life easier as a theme developer and WordPress user? Most likely. <a href="http://wpdevel.wordpress.com/2008/09/09/new-wp_page_menu-api-that-creates-a-me/">Thanks,&nbsp;WordPress</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/proposal-for-theme-management-in-wordpress/" rel="bookmark" title="April 2, 2008">A Proposal for Theme Management in WordPress</a></li>

<li><a href="http://themeshaper.com/wordpress-theme-preview-theseus/" rel="bookmark" title="February 2, 2008">WordPress Theme Preview: Theseus</a></li>

<li><a href="http://themeshaper.com/the-ultimate-wordpress-theme-test/" rel="bookmark" title="January 28, 2008">The Ultimate WordPress Theme Test</a></li>
</ul><!-- Similar Posts took 2.487 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=jfaGl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=jfaGl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=kOakl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=kOakl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=raq4l"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=raq4l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=9Wfwl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=9Wfwl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/390682704" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/new-wp_page_menu-api/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fnew-wp_page_menu-api%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/new-wp_page_menu-api/</feedburner:origLink></item>
		<item>
		<title>Essay &amp; The Sandbox For Movable Type</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/388714762/</link>
		<comments>http://themeshaper.com/essay-the-sandbox-for-movable-type/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 14:36:33 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=627</guid>
		<description><![CDATA[My Sandbox Design Competition entry, Essay, along with a host of other Sandbox Child Themes, and The Sandbox itself, have been ported to Movable&#160;Type.
Similar Posts:The Best Ideas for a New WordPress Default Theme

Welcome to ThemeShaper

Any WordPress Theme Can Be a Blank Framework
]]></description>
			<content:encoded><![CDATA[<p>My Sandbox Design Competition entry, <a href="http://sndbx.org/results/designs/essay/">Essay</a>, along with a host of other Sandbox Child Themes, and The Sandbox itself, have been <a href="http://www.movabletype.org/2008/09/sandbox_for_movable_type.html">ported to Movable&nbsp;Type</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/the-best-ideas-for-a-new-wordpress-default-theme/" rel="bookmark" title="March 26, 2008">The Best Ideas for a New WordPress Default Theme</a></li>

<li><a href="http://themeshaper.com/welcome-to-themeshaper/" rel="bookmark" title="November 21, 2007">Welcome to ThemeShaper</a></li>

<li><a href="http://themeshaper.com/wordpress-theme-blank-framework/" rel="bookmark" title="August 28, 2008">Any WordPress Theme Can Be a Blank Framework</a></li>
</ul><!-- Similar Posts took 2.513 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=I9Rjl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=I9Rjl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=oZvil"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=oZvil" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=XH7vl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=XH7vl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=fMTSl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=fMTSl" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/388714762" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/essay-the-sandbox-for-movable-type/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fessay-the-sandbox-for-movable-type%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/essay-the-sandbox-for-movable-type/</feedburner:origLink></item>
		<item>
		<title>Smart Cache-Busting For Your WordPress Stylesheet</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/387842857/</link>
		<comments>http://themeshaper.com/smart-cache-busting-for-your-wordpress-stylesheet/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 17:23:36 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=622</guid>
		<description><![CDATA[Alister Cameron has written a simple function you can add to any WordPress theme that lets you intelligently and automatically force browsers to use your updated WordPress&#160;stylesheet.
Similar Posts:A Better Spot for The WordPress Meta

Starkers for WordPress 2.6.2

Cozmos Labs On How Easy It Is To Design With Thematic
]]></description>
			<content:encoded><![CDATA[<p>Alister Cameron has written a simple function you can add to any WordPress theme that lets you intelligently and automatically <a href="http://www.alistercameron.com/2008/09/10/smart-cache-busting-for-your-wordpress-stylesheet/">force browsers to use your updated WordPress&nbsp;stylesheet</a>.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/a-better-spot-for-the-wordpress-meta/" rel="bookmark" title="March 11, 2008">A Better Spot for The WordPress Meta</a></li>

<li><a href="http://themeshaper.com/starkers-for-wordpress-262/" rel="bookmark" title="September 18, 2008">Starkers for WordPress 2.6.2</a></li>

<li><a href="http://themeshaper.com/easy-wordpress-design-with-thematic-theme/" rel="bookmark" title="August 11, 2008">Cozmos Labs On How Easy It Is To Design With Thematic</a></li>
</ul><!-- Similar Posts took 2.528 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=HwTol"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=HwTol" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=f9Irl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=f9Irl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=AOw8l"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=AOw8l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=nA98l"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=nA98l" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/387842857" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/smart-cache-busting-for-your-wordpress-stylesheet/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fsmart-cache-busting-for-your-wordpress-stylesheet%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/smart-cache-busting-for-your-wordpress-stylesheet/</feedburner:origLink></item>
		<item>
		<title>The Ethics of WordPress Themes at a Premium</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/387079424/</link>
		<comments>http://themeshaper.com/the-ethics-of-premium-wordpress-themes/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 22:46:24 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Ideas About Design]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=607</guid>
		<description><![CDATA[Are WordPress Themes open source? Is it right to release them on a pay-to-download&#160;basis?
… what these premium theme providers are doing … we would call that “Evil”Chase&#160;Sagum
… themes link and use lots of internal WordPress functions, which make them linked under the GPL and subject to being a GPL-compatible license. If a theme (or a [...]]]></description>
			<content:encoded><![CDATA[<p>Are WordPress Themes open source? Is it right to release them on a pay-to-download&nbsp;basis?</p>
<blockquote><p>… what these premium theme providers are doing … we would call that “Evil”<cite><a href="http://www.upstartblogger.com/when-premium-wordpress-themes-and-open-source-ethics-collide#comment-15751">Chase&nbsp;Sagum</a></cite></p></blockquote>
<blockquote><p>… themes link and use lots of internal WordPress functions, which make them linked under the GPL and subject to being a GPL-compatible license. If a theme (or a plugin) used no internal WP functions or APIs, then it could probably be considered independent, but that would be really really hard for a theme. <cite><a href="http://wordpress.org/support/topic/113358#post-543507">Matt&nbsp;Mullenweg</a></cite></p></blockquote>
<p>I haven&#8217;t really talked about it a lot but I&#8217;ve been trying to do pay-for-use themes differently. Namely, giving away what might normally be considered a &#8220;Premium&#8221; theme—<a href="http://themeshaper.com/thematic-for-wordpress/">my WordPress theme framework Thematic</a>—and charging for upgrades in the form of Child Themes and custom design. I think it&#8217;s a little more fair to the WordPress community and the debatable concerns around the ethics of paid WordPress&nbsp;themes.</p>
<p>But there&#8217;s still more questions. There&#8217;s always questions, isn&#8217;t there?<span id="more-607"></span></p>
<blockquote><p>Is there a principled difference between on the one hand, Jon hiring Ian to build a blog - Ian using his own Thematic theme as a base, and makes a custom blog a “child theme” with a distribution of 1; on the other hand, Ian makes 10 types of “child themes” - puts them on ThemeShaper - for a small price.<cite><a href="http://themeshaper.com/when-premium-wordpress-themes-open-source-ethics-collide/#comment-5010">Jon&nbsp;Soroko</a></cite></p></blockquote>
<p>Good question, I don&#8217;t really know. As far as I understand the GPL license, any GPL work can be redistributed. So, um, maybe? Does that make me&nbsp;&#8220;evil&#8221;?</p>
<p>More important, I think, is what Jon is trying to get at in his question. &#8220;The general, overarching concerns,&#8221; as he says in his original comment, around open source, the GPL and pay-for-use WordPress themes. So far, there&#8217;s been no definitive answer that I know of. Excepting the oft-linked comment above from the WordPress support&nbsp;forums.</p>
<p>What do I think? I can&#8217;t answer that question either. ThemeShaper is supported by advertising from premium theme designers and, of course, I release commercial Child Themes (I call them Themelets) for my GPL WordPress Theme Framework, Thematic, <em>at a premium</em>. I even predicted the end of &#8220;Premium&#8221; WordPress themes. My opinion, as they say, is&nbsp;biased.</p>
<p>But! I can start a discussion. <img src='http://themeshaper.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>So what do you think?</strong> Are WordPress themes open source? Do they inherit the GPL? Does the WordPress community <em>want</em> &#8220;premium&#8221; themes to exist? Should&nbsp;they?</p>
<p><strong class="caps">Update: </strong>You <em>must</em> read the comments on this post. There is some really interesting discussion happening. Notable commentators include WordPress founder <em>Matt Mullenweg</em> and several designers involved in releasing commercial WordPress&nbsp;themes.</p>
<h2>The Discussion&nbsp;Elsewhere</h2>
<ul>
<li><a href="http://wordpress-plugins.feifei.us/10/wordpress-themes-are-gpl-code/">Wordpress Themes Are GPL Code by Wordpress&nbsp;Plugins</a></li>
<li><a href="http://www.upstartblogger.com/when-premium-wordpress-themes-and-open-source-ethics-collide">When Premium Wordpress themes and open source ethics&nbsp;collide</a></li>
</ul>
Similar Posts:<ul><li><a href="http://themeshaper.com/when-premium-wordpress-themes-open-source-ethics-collide/" rel="bookmark" title="September 6, 2008">When Premium WordPress Themes &#038; Open Source Ethics Collide</a></li>

<li><a href="http://themeshaper.com/matt-mullenweg-joseph-scott-wordpress-themes-directory/" rel="bookmark" title="August 13, 2008">Matt Mullenweg &#038; Joseph Scott Discuss The WordPress Themes Directory</a></li>

<li><a href="http://themeshaper.com/the-future-of-premium-wordpress-themes/" rel="bookmark" title="February 28, 2008">The Future of Premium WordPress themes</a></li>
</ul><!-- Similar Posts took 2.868 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=PIpDl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=PIpDl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=qvHAl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=qvHAl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=mK4nl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=mK4nl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=smr4l"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=smr4l" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/387079424" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/the-ethics-of-premium-wordpress-themes/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fthe-ethics-of-premium-wordpress-themes%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/the-ethics-of-premium-wordpress-themes/</feedburner:origLink></item>
		<item>
		<title>The Ideetransfer Theme, A Thematic Child Theme</title>
		<link>http://feeds.feedburner.com/~r/ThemeShaper/~3/386606749/</link>
		<comments>http://themeshaper.com/the-ideetransfer-theme-a-thematic-child-theme/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 11:30:30 +0000</pubDate>
		<dc:creator>Ian Stewart</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://themeshaper.com/?p=605</guid>
		<description><![CDATA[Another beautiful Thematic Child Theme: the minimalist Ideetransfer theme. This is a perfect blog theme with many, many fine details and clear, refined&#160;typography.
Similar Posts:Monochromatic, A Thematic Child Theme

The Ultimate WordPress Theme Test

What&#8217;s new in Thematic 0.7
]]></description>
			<content:encoded><![CDATA[<p>Another beautiful Thematic Child Theme: <a href="http://www.ideetransfer.de/blog/2008/01/29/the-theme/">the minimalist Ideetransfer theme</a>. This is a perfect blog theme with many, many fine details and clear, refined&nbsp;typography.</p>
Similar Posts:<ul><li><a href="http://themeshaper.com/monochromatic-a-thematic-child-theme/" rel="bookmark" title="August 30, 2008">Monochromatic, A Thematic Child Theme</a></li>

<li><a href="http://themeshaper.com/the-ultimate-wordpress-theme-test/" rel="bookmark" title="January 28, 2008">The Ultimate WordPress Theme Test</a></li>

<li><a href="http://themeshaper.com/thematic-07/" rel="bookmark" title="October 6, 2008">What&#8217;s new in Thematic 0.7</a></li>
</ul><!-- Similar Posts took 2.745 ms --><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ThemeShaper?a=vOe2l"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=vOe2l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=1DEOl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=1DEOl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=feRzl"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=feRzl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ThemeShaper?a=2MOil"><img src="http://feeds.feedburner.com/~f/ThemeShaper?i=2MOil" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThemeShaper/~4/386606749" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themeshaper.com/the-ideetransfer-theme-a-thematic-child-theme/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=ThemeShaper&amp;itemurl=http%3A%2F%2Fthemeshaper.com%2Fthe-ideetransfer-theme-a-thematic-child-theme%2F</feedburner:awareness><feedburner:origLink>http://themeshaper.com/the-ideetransfer-theme-a-thematic-child-theme/</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=ThemeShaper</feedburner:awareness></channel>
</rss><!-- Dynamic Page Served (once) in 0.553 seconds -->
