<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Framework</title>
	<atom:link href="http://wpframework.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpframework.com</link>
	<description>A blank WordPress Theme Framework</description>
	<lastBuildDate>Sat, 19 Sep 2009 22:14:47 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Heavy development</title>
		<link>http://wpframework.com/updates/heavy-development/</link>
		<comments>http://wpframework.com/updates/heavy-development/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 22:13:54 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=370</guid>
		<description><![CDATA[Just publicly announcing that the latest version of WP Framework is still in heavy development and won&#8217;t be ready for the public until further notice. I&#8217;ll keep you guys informed once things become finalized, but in the meantime, there are plenty of great alternatives.
]]></description>
			<content:encoded><![CDATA[<p>Just publicly announcing that the latest version of WP Framework is still in heavy development and won&#8217;t be ready for the public until further notice. I&#8217;ll keep you guys informed once things become finalized, but in the meantime, there are plenty of <a href="http://themeshaper.com/thematic/">great </a><a href="http://themehybrid.com">alternatives</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/heavy-development/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Looking for Beta testers!</title>
		<link>http://wpframework.com/updates/looking-for-beta-testers/</link>
		<comments>http://wpframework.com/updates/looking-for-beta-testers/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 07:31:43 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=354</guid>
		<description><![CDATA[Beta period is now closed.
Over the past two weeks I&#8217;ve been working on WP Framework full time, knocking out the to do list and fixing bugs raised in the forums. As a result, WP Framework has received a boat load of new features and functionality that improves your theme development work flow dramatically.
No seriously, WP [...]]]></description>
			<content:encoded><![CDATA[<p class="alert"><strong>Beta period is now closed.</strong></p>
<p>Over the past two weeks I&#8217;ve been working on WP Framework full time, knocking out the to do list and fixing bugs raised in the <a href="http://wpframework.com/forums/">forums</a>. As a result, WP Framework has received a boat load of new features and functionality that improves your theme development work flow <em>dramatically</em>.</p>
<p>No seriously, WP Framework really improved over the past 2 weeks and I need your help testing it to make sure it&#8217;s as polished as possible. Out of the many things I need your valuable help with, WP Framework&#8217;s got this sexy new auto upgrading functionality that needs testing on as many server environments as possible. Can you help me test that?</p>
<p>If you&#8217;re interested, <a href="#comments">leave a comment</a> and I&#8217;ll forward you a copy the latest nightly along with some specifics about what I need help with testing. I&#8217;m closing the beta period by next Wednesday as WordPress 2.8.1 is around the corner and I&#8217;m trying to get this out the door when that ships.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/looking-for-beta-testers/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>API for including stylesheets and javascript</title>
		<link>http://wpframework.com/updates/api-for-including-stylesheets-and-javascript/</link>
		<comments>http://wpframework.com/updates/api-for-including-stylesheets-and-javascript/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 20:03:35 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=192</guid>
		<description><![CDATA[Currently, how do you include stylesheets and javascript into your theme or theme framework? I can think of two common ways:

inserting the &#60;link&#62; or &#60;script&#62; tag directly into the header.php
encapsulate the &#60;link&#62; or &#60;script&#62; tags into a function that hooks into an action hook (located in header.php)

I&#8217;m not particularly happy with any of those methods. [...]]]></description>
			<content:encoded><![CDATA[<p>Currently, how do you include stylesheets and javascript into your theme or theme framework? I can think of two common ways:</p>
<ol>
<li>inserting the <code>&lt;link&gt;</code> or <code>&lt;script&gt;</code> tag directly into the header.php</li>
<li>encapsulate the <code>&lt;link&gt;</code> or <code>&lt;script&gt;</code> tags into a function that hooks into an action hook (located in header.php)</li>
</ol>
<p>I&#8217;m not particularly happy with any of those methods. WordPress has built-in functions for dealing with these file types: <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_style">wp_enqueue_style</a> &amp; <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">wp_enqueue_script</a> respectively. The only drawback with css is that the old way of @importing stylesheets is deprecated. Of course this might be a good thing, depending on whether your <a href="http://stevesouders.com/blog/2009/04/09/dont-use-import/">big on performance</a> or not.</p>
<p>Anyway, I decided to build an API around those functions that would easily allow theme authors to include css and javascript into their theme—the smart way. <span style="text-decoration: line-through;">Simply filter the global array containing all the enqueued CSS files (or javascripts), and append your own:</span></p>
<pre><span style="text-decoration: line-through;">add_filter( 'enqueue_styles', 'my_stylesheets' );

function my_stylesheets( $styles ) {
	$styles[] = array(
		'handle' =&gt; '2col',
		'src' =&gt; MEDIA . '/layouts/2col-r.css',
	);
	return $styles;
}</span></pre>
<p class="alert">I&#8217;ve outdone myself. Instead of filtering the global array like I mentioned in the previous paragraph, simply make this call in your custom-functions.php:</p>
<pre>framework_add_stylesheet( 'master', 'master.css', 'reset.css' );
framework_add_script( 'superfish', 'superfish.js', 'jquery', true, false );</pre>
<p>The functions automatically search the media directory in their respective locations (which can be overwritten if necessary). Removing a stylesheet or javascript is even simpler:</p>
<pre>framework_remove_stylesheet( 'master' );
framework_remove_script( 'superfish' );</pre>
<p class="note">Full documentation on these functions are in the <a href="http://wpframework.com/docs/media-api/">Media API</a> docs</p>
<p>The API accepts up to 5 parameters, with the first two being required. The parameters are dealt with exactly like their respective functions, so check those codex links for more info on that. Once I finish testing this API, it will be available in the next release.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/api-for-including-stylesheets-and-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>0.2.4.10 Release</title>
		<link>http://wpframework.com/versions/02410-release/</link>
		<comments>http://wpframework.com/versions/02410-release/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:32:15 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Versions]]></category>
		<category><![CDATA[minor release]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=177</guid>
		<description><![CDATA[This is the 10th maintenance release for WP Framework 0.2.4 that fixes several issues pointed out in the forums. Download 0.2.4.10 now.
The next version of WP Framework will be 0.4 and will ship once WordPress 2.8 releases (It&#8217;s currently in beta testing) New structural changes to the templates and a brand new theme options page are two [...]]]></description>
			<content:encoded><![CDATA[<p>This is the 10th maintenance release for WP Framework 0.2.4 that fixes several issues pointed out in the <a href="http://wpframework.com/forums/">forums</a>. <a href="http://wordpress.org/extend/themes/wp-framework">Download 0.2.4.10 now</a>.</p>
<p>The next version of WP Framework will be 0.4 and will ship once WordPress 2.8 releases (It&#8217;s currently in beta testing) New structural changes to the templates and a brand new theme options page are two of the many improvements that you&#8217;ll find in 0.4.</p>
<h2>Change log:</h2>
<h3>New:</h3>
<ul>
<li><a href="http://wpframework.com/forums/topic/style-a-category-of-post">You can now style categories</a> with the <code>category</code> and <code>category-slug</code> css class</li>
<li><a href="http://wpframework.com/forums/topic/post_class-instead-of-semantic_entries">Semantic Entries now uses get_post_class</a></li>
<li><a href="http://wpframework.com/forums/topic/microformats-profile-uris">Microformat Profile URIs are now used</a></li>
</ul>
<h3>Bug fixes:</h3>
<ul>
<li><a style="text-decoration: none;" href="http://wpframework.com/forums/topic/js-error-expected-identifier-string-or-number">js error: expected identifier, string, or number</a></li>
<li><a style="text-decoration: none;" href="http://wpframework.com/forums/topic/gallery-tag">The gallery shortcode works as it should</a></li>
</ul>
<p>And that&#8217;s all for 0.2.4.10, please post any bugs, ideas, or feedback <a title="WP Framework's Support Forum" href="http://wpframework.com/support/forums/">in the forums</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/versions/02410-release/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WP Framework is now available in extend</title>
		<link>http://wpframework.com/updates/wp-framework-is-now-available-in-extend/</link>
		<comments>http://wpframework.com/updates/wp-framework-is-now-available-in-extend/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 20:24:52 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=118</guid>
		<description><![CDATA[WP Framework is now officially in the WordPress themes directory which makes it easier for you to download and install new updates!
]]></description>
			<content:encoded><![CDATA[<p>WP Framework is now officially in the <a href="http://wordpress.org/extend/themes/wp-framework">WordPress themes directory</a> which makes it easier for you to download and install new updates!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/wp-framework-is-now-available-in-extend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>0.2.4 Release</title>
		<link>http://wpframework.com/versions/024-release/</link>
		<comments>http://wpframework.com/versions/024-release/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 21:53:28 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Versions]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=109</guid>
		<description><![CDATA[WP Framework 0.2.4 is now available for download. It contains a lot of bug fixes and enhancements from the 0.2.3 version along with a new default look. WP Framework 0.2.4 has also been submitted to the WordPress Themes Directory, so it&#8217;ll be even easier to download/upgrade when new versions become available. As always, post any [...]]]></description>
			<content:encoded><![CDATA[<p>WP Framework 0.2.4 is now <a href="http://wpframework.com/download/">available for download</a>. It contains a lot of bug fixes and enhancements from the 0.2.3 version along with a new default look. WP Framework 0.2.4 has also been submitted to the <a href="http://wordpress.org/extend/themes/">WordPress Themes Directory</a>, so it&#8217;ll be even easier to download/upgrade when new versions become available. As always, post any feedback on the <a title="WP Framework Forums" href="../forums/">forums</a>!</p>
<h2>Change log:</h2>
<h3>New:</h3>
<ul>
<li>New <code>screenshot.png</code> now shows the base layout</li>
<li>New default look (<code>base.css</code>)</li>
<li>Part of <code>widgets.php</code> from the 0.3 branch is now included in 0.2.4 for better handling with widgets</li>
<li>Comments and Pings/Trackbacks are separated</li>
<li>3 sample layouts are now included (<code>library/media/layouts</code>)</li>
<li><code>Screen.js</code> now has an example use of jQuery</li>
</ul>
<h3>Changes:</h3>
<ul>
<li>The <code>assets</code> directory has been moved to the <code>library</code> and renamed to <code>media</code></li>
<li>The <code>styles</code> directory has been merged with <code>media</code></li>
<li>Archives pages now have a more specific <code>.page-title</code></li>
<li>The <code>core</code> directory has been renamed to <code>functions</code> + all files within that directory now have better names</li>
<li>Constant names have been renamed in <code>framework.php</code></li>
<li><code>Comments.php</code> has been reworked</li>
<li>Semantic Classes has been reworked</li>
<li>Navigation links are now below the comments</li>
</ul>
<p><strong>P.S.</strong> Coming this week will be the first public WordPress theme based on WP Framework: <em>Haven</em> (previously known as <a href="http://ptahdunbar.com/wordpress/wpfreemium-theme-20-released/">WP Freemium theme</a>). A lot of you have requested an update for this theme, now it&#8217;s officially coming.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/versions/024-release/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Development Releases</title>
		<link>http://wpframework.com/updates/development-releases/</link>
		<comments>http://wpframework.com/updates/development-releases/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 20:07:58 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=107</guid>
		<description><![CDATA[I&#8217;m going to hold off releasing the public download for any future version of WP Framework until I think it&#8217;s reached a matured enough state.
Things are constantly changing in the code base and maintaining these revisions is getting a bit cumbersome. So the main download link will continue to be WP Framework 0.2.3 until any [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to hold off releasing the public download for any future version of WP Framework until I think it&#8217;s reached a matured enough state.</p>
<p>Things are constantly changing in the code base and maintaining these revisions is getting a bit cumbersome. So the main download link will continue to be WP Framework 0.2.3 until any future versions are stable enough.</p>
<p>I&#8217;ll still release any bug fixes and changes for 0.2.3 down the line if needed.</p>
<p>Development release of WP Framework future versions will still be announced but you&#8217;ll only be able to download them via the <a href="http://code.google.com/p/wpframework/source/browse/trunk">svn repo</a>. If you&#8217;d don&#8217;t have <a href="http://en.wikipedia.org/wiki/Subversion_(software)">subversion</a>, then you can request a .zip copy but understand that it&#8217;s not intended for production. Thanks for your understanding. Doing this gives me more time to do other things like write documentation and develop the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/development-releases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Throwback: Release 0.2.3</title>
		<link>http://wpframework.com/versions/throwback-release-023/</link>
		<comments>http://wpframework.com/versions/throwback-release-023/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 03:10:31 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Versions]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=95</guid>
		<description><![CDATA[As promised, here&#8217;s an update for WP Framework 0.2.2 that further transitions you on over to the 0.3 release. Version 0.2.3 is a product of all the things I&#8217;ve learned with version 0.3, but without all the abstraction and MVC architecture. You guys wanted a more CSS friendly version and here it is. I pulled [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, here&#8217;s an update for WP Framework 0.2.2 that further transitions you on over to the 0.3 release. Version 0.2.3 is a product of all the things I&#8217;ve learned with version 0.3, but without all the abstraction and MVC architecture. You guys wanted a more CSS friendly version and here it is. I pulled the 0.3 release down as it was a bit rushed. Version 0.3.1 will be much more stable and more in lines of how things are suppose to work.</p>
<p>Hope you guys like it, and as always, post any feedback on the <a title="WP Framework Forums" href="http://wpframework.com/forums/">forums</a>!</p>
<h2>Change log</h2>
<h3>New</h3>
<ul>
<li>cleaner template files and a overhaul of all the backend code</li>
<li>New entry_footer div under <code>#entry-content</code> and <code>#entry-summary</code> that shows the post categories and tags if they have any.</li>
<li>new directory: extension (to house all the functionality that extends the framework)</li>
<li>new files: <code>general-functions.php</code>, <code>helper-functions.php</code>, and <code>pluggable.php</code> in /core/</li>
<li><code>screen.js</code> now has an example function using jQuery</li>
<li>New constant: <code>REGISTER_WIDGETS</code> in functions.php so you can set how many widgets you have in your theme</li>
</ul>
<h3>Changes</h3>
<ul>
<li><em>theme-functions.php</em> has been renamed back to <em>custom-functions.php</em> to become compatible with version 0.3</li>
<li><code>hooks.php</code> has been renamed to <code>framework-hook-system.php</code></li>
<li>updated the examples in theme.php (formally theme-functions.php)</li>
<li><code>#entry-content</code> and <code>#entry-summary</code> now have an extra CSS class called article to select both of them</li>
<li>Base.css has been updated</li>
<li>A few of the main divs have been changed to make the transition over to HTML5 easier:<br />
<code>#container</code>, <code>#header</code>, <code>#footer</code> are now classes.</li>
<li>the <code>#secondary</code> div now has a new class called aside.</li>
<li>removed smiley.gif</li>
<li>no longer using <code>get_author_link()</code> as it&#8217;s deprecated. Now using <code>get_author_posts_url();</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/versions/throwback-release-023/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WP Framework&#8217;s Talk at WordCamp Miami 09</title>
		<link>http://wpframework.com/updates/wp-frameworks-talk-at-wordcamp-miami-09/</link>
		<comments>http://wpframework.com/updates/wp-frameworks-talk-at-wordcamp-miami-09/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 10:22:18 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=54</guid>
		<description><![CDATA[If you&#8217;re not up to speed, I went to WordCamp Miami a little while ago to talked about WP Framework. Here&#8217;s the orginal blost post about that. Since my presentational skills aren&#8217;t as descriptive as my writing, I thought I should rephrase what was said for those that weren&#8217;t there.
The State of the Theme.
So, here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re not up to speed, I went to WordCamp Miami a little while ago to talked about WP Framework. <a href="http://ptahdunbar.com/events/wordcamp-miami-09/">Here&#8217;s the orginal blost post about that</a>. Since my presentational skills aren&#8217;t as descriptive as my writing, I thought I should rephrase what was said for those that weren&#8217;t there.</p>
<h2>The State of the Theme.</h2>
<p>So, here&#8217;s the good news. There are tons of <em>free</em> themes available for WordPress. And with that, they&#8217;re are a multitude of sources to get your hands on those theme themes. Here are four ways WordPress users find and download their themes:</p>
<ol>
<li> WordPress Theme&#8217;s directory</li>
<li>Blog announcement post/round ups (e.g. <a href="http://weblogtoolscollection.com/">Weblogtoolscollection</a>)</li>
<li>Directly from the theme author&#8217;s website</li>
<li>Dedicated theme sites (be it premium or freemium)</li>
</ol>
<p>And that&#8217;s great! Lots of ways to find that one special theme you&#8217;re looking for. And that&#8217;s not all. Want to demo one of those themes? No problem! It&#8217;s extremely easy to demo a potential WordPress Theme and judge whether you&#8217;d like to use it or not. And it&#8217;s getting <strong><em>even easier</em></strong> with WordPress 2.8 around the corner. You&#8217;ll be able to search, preview and install a WordPress theme right from the convenience of your WordPress Dashboard. Now that&#8217;s what I call <em>automattic</em>.</p>
<p>All good and dandy. But there&#8217;s some bad news associated with that. A lot of WordPress themes (free or premium) <em>aren&#8217;t exactly sexy</em> under the hood. I&#8217;m sure you&#8217;ve encountered many poorly written themes that only contain the bear minimum to make that theme actually work. I&#8217;d hate to call anyone out, so just <a href="http://tinyurl.com/aoqtqp">browse around</a> and see for yourself. You&#8217;ll see themes with invalid markup, buggy code, and themes that only contain the bear minimum to make that particular theme work. Now when the <a href="http://codex.wordpress.org/Theme_Development#Basic_Templates">Codex states</a> that all you need to make a theme work is the <code>index.php</code> and <code>style.css</code>, some people took that way too literally.</p>
<p>With all that said, I&#8217;d hate to say it gets <em>worst</em>. In addition to being poorly written, containing buggy code and themes only containing the bear minimum, <strong><em>themes don&#8217;t innovat</em>e</strong>. WordPress provides users with a power widget system that allows you add blocks of content literally <em>anywhere</em> into your WordPress theme. Currently, widgets are only used as <em>sidebar accessories</em>. So much for innovation.</p>
<p><strong>What&#8217;s a theme author to do?</strong> Raise the standard and create a tool as a guide to how themes should work under the hood. Create a tool to aide in the developing of WordPress themes with <em>no fluff</em>. Make it so that this tool only contains framework level code, <em>architectural</em> stuff that every theme needs or should have. <strong>This tool is a theme framework.</strong></p>
<h2>What is a theme framework?</h2>
<p>I like to give an analogy of a car (cars = themes, bear with me). When building a new car, everything isn&#8217;t reinvented. Your <strong><em>not</em></strong> going to find innovation in tires or in a steering wheel from the new <a href="http://www.automotive.com/2009/12/dodge/grand-caravan/reviews/index.html">Dodge Grand Caravan</a>. Instead, you&#8217;d probably find innovation through the features it sports. What results, is a lot of cars using the same parts. <strong><em>So can</em> WordPress themes</strong>. It&#8217;s all about being more efficient in your craft. Factor out all the essential theme parts and use them as the bases for the framework. In doing this, you&#8217;ll dramatically speed up the time it takes to build recurring themes from scratch.</p>
<p>So in essence, I&#8217;ve just explained to you why I created WP Framework. I saw that they&#8217;re were no standards in theme authoring, everybody was basically doing what the other guy was doing for whatever reason, so I did something about it. After some brainstorming of figuring out how I could best solve these problems, I created WP Framework. What you have is <em>an extremely modular, powerful theme, built with extensibility in mind.</em></p>
<p>Continuing from the car analogy, you&#8217;re not going to drive a car without doors or an exterior. You&#8217;re going to personalize it first, adding all those car features you always wanted and finally, drive it. I guess what I&#8217;m trying to stress is that it&#8217;s important to understand that when you download WP Framework, you&#8217;re not getting a fully designed WordPress theme ready to install on your site. Technically you could, but you&#8217;ll probably want to customize it first and make it look sexy.</p>
<h2>WP Framework&#8217;s Goal</h2>
<p>Now that you understand what a theme framework is, why I created one and how you can benefit from using one, here&#8217;s WP Framework&#8217;s goal.</p>
<blockquote><p>My primary and only goal with WP Framework is to raise the standard for   WordPress Themes and dramatically improve the efficiency in creating   new themes from scratch.</p></blockquote>
<p>I see that as a two part goal and will tackle it as such. The road to accomplishment far and burly, so I set some principles so WP Framework will have a clear path towards success.</p>
<h2>WP Framework’s Principles</h2>
<p>I come from a front-end web development background and I&#8217;ve done work both as a designer and developer. So it&#8217;s important that this framework is both, <strong>designer and developer friendly</strong>. How?</p>
<p>For <strong>designers</strong>, WP Framework will</p>
<ul>
<li>be web standards complaint</li>
<li>always output valid, clean semantic HTML/CSS</li>
<li>provide dynamic CSS classes based on context</li>
<li>provide organization and structure to your themes</li>
</ul>
<p>and for <strong>developers</strong>, WP Framework will</p>
<ul>
<li>contain well commented and forward compatible code</li>
<li>allow any default behavior to be overwritten or extended</li>
<li>provide convention over configuration</li>
<li>serve as the bases any WordPress theme project</li>
</ul>
<p>With these principles in mind, WP Framework is set off on a clear path to reaching it&#8217;s goal.</p>
<h2>WP Framework Features</h2>
<p>As of version <strong>0.2.2</strong>, WP Framework features:</p>
<ul>
<li>Microformats coming in hAtom, hCard and XOXO vereities.</li>
<li>Continually Search Engine Optimized</li>
<li>Modular CSS includes ( reset.css, base.css, screen.css )</li>
<li>Gravatar enabled</li>
<li>Favicon &amp; iPhone webclip placeholder images</li>
<li>jQuery enabled + screen.js (an empty .js file pre-loaded and ready)</li>
<li>Basic print.css Stylesheet ready for printing web documents</li>
</ul>
<p>WP Framework sports a lot more features like well documented code and behind-the-scenes type stuff that power a theme. WP Framework really strives in the details so <a href="http://code.google.com/p/wpframework/source/browse/trunk/index.php">go take a peek inside</a>.</p>
<h2>The Future of WP Framework</h2>
<p>So now we pretty much know what WP Framework is, who it&#8217;s for, and all that good stuff. What&#8217;s the future look like? Well for one, it&#8217;s pretty bright! lol I like to look at the future from two angels: near and&#8230; right after that.</p>
<h3>Near Future</h3>
<p>Currently, WP Framework&#8217;s target audience is theme authors who are more specifically, designers and developers. These guys are all technofobes who understand geeky terminology  POSH, or CoC. What I envision for WP Framework is to become the behind-the-scenes tool that everyone uses but doesn&#8217;t even know. Well, for the non-technical crowd atleast. I&#8217;d love to talk about the specifics, but rather sum things up like this: I want anyone, nontechie and geeks, to be able to visually build their own custom unique layout and have it up on their site moments later.</p>
<p>That&#8217;s all I have to say about that. For now, we&#8217;ll just call it Theme Builder.</p>
<h3>Right after the near future</h3>
<p>By then, I hope to have build a community around the project. Through wpframework.com, I hope to truly deliver a framework that&#8217;s everything you need and nothing you don&#8217;t. Essessntially, I envisioned a section on the site where you could download user genereated content like framework functionality that extend WP Framework itself and things of that nature.</p>
<p>I have a lot to say about the project, but instead of writing about it and trying to understand it, I&#8217;d rather produce and make it happen. That&#8217;s all I have to say.</p>
<h2>Credits and Shoutouts</h2>
<p>As always, I like to give credit where credits due. These people come from various walks of life with one thing in common. They&#8217;re continually advancing WordPress and for that, I thank them.</p>
<ul>
<li>Kubrick – default theme</li>
<li>Nathan Rice – nathanrice.net</li>
<li>K2 – Binary Bonsai</li>
<li>Cory Miller at iThemes</li>
<li>Sandbox – Scott Wallick</li>
<li>Chris Jean – WP Roadmap</li>
<li>Thematic – Ian Stewart</li>
<li>Jeff Chandler – WP Tavern</li>
<li>Hybrid – Justin Tadlock</li>
<li>Mike – WPCandy</li>
<li>Tarski – Ben Eastaugh</li>
<li>Thesis – Chris Pearson</li>
<li>SP</li>
</ul>
<p><strong>Q&amp;A:</strong> If you have any questions, please feel free. If not, thanks for your time and I hope you get a chance to try out WP Framework in it&#8217;s infancy stages and see what it&#8217;s all about.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/updates/wp-frameworks-talk-at-wordcamp-miami-09/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>0.3 Release</title>
		<link>http://wpframework.com/versions/03-release/</link>
		<comments>http://wpframework.com/versions/03-release/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:34:02 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
				<category><![CDATA[Versions]]></category>

		<guid isPermaLink="false">http://wpframework.com/?p=78</guid>
		<description><![CDATA[Update: I pulled this release down as it was a bit rushed. However, you can download a much stable release 0.2.3 in the meantime until I get 0.3.1 out. Thanks.
As many of you might know, version 0.3 is a major release for the project which introduces a lot of new functionality. It has been completely [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> I pulled this release down as it was a bit rushed. However, you can <a title="Download WP Framework" href="http://wpframework.com/download/">download</a> a much stable release 0.2.3 in the meantime until I get 0.3.1 out. Thanks.</p>
<p>As many of you might know, version 0.3 is a major release for the project which introduces a lot of new functionality. It has been completely rewritten to pave the way for future innovations and features to come. Version 0.3 is my idea of a WordPress theme framework.</p>
<p>One of the main things you&#8217;ll notice about this new version is the abstraction that&#8217;s been done to all the template files. I&#8217;ve abstracted common elements from all the template files and consolidated them into callback functions. This allows for more gradual control over your layout, and keeps things <abbr title="Don't Repeat Yourself">DRY</abbr>. Abstracting all the common elements allowed me to introduce a new concept to theme development called <abbr title="Model View Controller">MVC</abbr>. Model View Controller is a <em>architectural pattern</em> used in software engineering:</p>
<blockquote cite="http://en.wikipedia.org/wiki/Model-view-controller"><p>In MVC, the model represents the information (the data) of the application; the view corresponds to elements of the user interface such as text, checkbox items, and so forth; and the controller manages the communication of data and the business rules used to manipulate the data to and from the model. — <a href="http://en.wikipedia.org/wiki/Model-view-controller">Wikipedia</a></p></blockquote>
<p>How does this translate to theme development? Well, think of the model as the WordPress database layer. The view translates to all WordPress template files (in which the user interacts with). And lastly, the controller is a combination of WordPress/theme functions that handle all the template logic. From an MVC perspective, current WordPress themes don&#8217;t really have a controller, everything&#8217;s just in the template files. That approach is one of the prime reasons for user modifications potentially messing up during a theme upgrade. Using a MVC approach easily solves that problem and in addition (including many other benefits), makes your theme more modular and extensible.</p>
<h2>Introducing WP Framework Core</h2>
<p>Ever since I released WP Framework to the public, it included some nice-to-have features along with it. Here&#8217;s whats included in version 0.3:</p>
<ul>
<li>a CSS reset stylesheet</li>
<li>a basic print stylesheet</li>
<li>a base stylesheet that gives your layout a sensible default look</li>
<li>two favicons; one 16&#215;16 .ico for the web browser and an iPhone webclip icon</li>
<li>automatically including an empty javascript file with jQuery pre-loaded</li>
<li>and semantic classes, a successor of the sandbox functions.</li>
</ul>
<p>While these features are great, their nice-to-haves and aren&#8217;t essential for all themes. So I removed all of them and created a new package called <em>WP Framework Core</em>. That way if you don&#8217;t want all the extra features that WP Framework provides, you can download the core version and have only the essentials. If, however you download the core version and want to cherry pick features, that&#8217;s not a problem as all features are easily pluggable. Doing this paves the way for the theme builder project I talked about at WordCamp Miami (which I&#8217;ll explain a little more in a following article).</p>
<p>That&#8217;s about it, I hope you&#8217;ll enjoy this release. I covered this release at a high level, but there&#8217;s lots of new things and hidden goodies that you&#8217;ll find while playing with it. Customizing is a little different, it now mainly involves using the <a href="http://codex.wordpress.org/Plugin_API">WordPress plugin system</a>. I&#8217;m working on a theme based on WP Framework for you guys to play with. In the meantime, just ask any questions in the <a href="http://wpframework.com/forums/">forums</a> and I&#8217;ll be sure to help you out.</p>
<p>I should note that WP Framework is <em>still</em> considered <em>beta</em> software until its 1.0 release. Folders, functions and/or CSS classes might be added, removed or replaced up until 1.0, <strong>so nothing is officially permanent</strong>. This might be an inconvience for you if you start building off WP Framework right now, but the most I can do is provide you a list of detailed changes that go into each release. Alternatively, you can keep an eye on the <a href="http://code.google.com/p/wpframework/source/list">change list</a>, or read the readme.txt included within WP Framework to see list of all the changes between versions. I&#8217;m in the process of making a record of the change log publically, so <a href="http://wpframework.com/feed/">subcribe to the blog</a> if you haven&#8217;t already.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpframework.com/versions/03-release/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
