<?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>Wordpress API &#187; Wordpress Themes</title>
	<atom:link href="http://wordpressapi.com/category/wordpress/wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressapi.com</link>
	<description>Wordpress Tutorials, Tips, Code, Hacks, Themes, plugin, Developer Code book -Wordpress Code, Themes, Plugins, Tips, Tutorials, News, Releases, Designs, Hacks, Tricks, Blog</description>
	<lastBuildDate>Tue, 08 May 2012 17:37:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to include the jquery-ui in wordpress</title>
		<link>http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/</link>
		<comments>http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 16:46:25 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6996</guid>
		<description><![CDATA[http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/When you enqueue your script, it enqueues for the whole site including admin panel. If you don&#8217;t want the script in the admin panel, you can only include them for the site in frontend. This following code you need to &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/<p>When you enqueue your script, it enqueues for the whole site including admin panel. If you don&#8217;t want the script in the admin panel, you can only include them for the site in frontend.</p>
<p>This following code you need to add in functions.php file.</p>
<pre class="brush: php; title: ; notranslate">
function my_add_frontend_scripts() {
    if( ! is_admin() ) {
        wp_enqueue_script('jquery');
        wp_enqueue_script('jquery-ui-core');
    }
}
add_action('init', 'my_add_frontend_scripts');
</pre>
<p>Then you are able to see the jquery-ui in your wordpress theme.<a href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/add-jquery-wordpress/" rel="attachment wp-att-6081"><img src="http://images.wordpressapi.com/add-jquery-wordpress-300x94.jpg" alt="" title="add-jquery-wordpress" width="300" height="94" class="alignnone size-medium wp-image-6081" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/" title="how to include jquery ui in wordpress">how to include jquery ui in wordpress</a></li><li><a href="http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/" title="includes jquery ui wordpress">includes jquery ui wordpress</a></li><li><a href="http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/" title="jquery ui grid to pdf using php">jquery ui grid to pdf using php</a></li><li><a href="http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/" title="jquery ui wordpress">jquery ui wordpress</a></li><li><a href="http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/" title="jquery wordpress api">jquery wordpress api</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2012/01/18/how-to-include-jquery-ui-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>wordpress theme wysiwyg editor default css</title>
		<link>http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/</link>
		<comments>http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 18:42:53 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[wysiwyg editor]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6881</guid>
		<description><![CDATA[http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/Many wordpress developers are creating wordpress theme. But many times when you are writing through editor and applying the formatting. Formatting is not exactly coming in theme. Some time image alignment and photo caption is not coming properly. When you &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/<p>Many wordpress developers are creating wordpress theme. But many times when you are writing through editor and applying the formatting. Formatting is not exactly coming in theme.</p>
<p>Some time image alignment and photo caption is not coming properly.</p>
<p>When you are creating creating new wordpress theme or taking theme from anyone put following CSS code in style.css file. Make sure following CSS code is present in your wordpress theme.</p>
<pre class="brush: css; title: ; notranslate">
 /* =WordPress Core
 -------------------------------------------------------------- */
 .alignnone {
 margin: 5px 20px 20px 0;
 }

.aligncenter, div.aligncenter {
 display:block;
 margin: 5px auto 5px auto;
 }

.alignright {
 float:right;
 margin: 5px 0 20px 20px;
 }

.alignleft {
 float:left;
 margin: 5px 20px 20px 0;
 }

.aligncenter {
 display: block;
 margin: 5px auto 5px auto;
 }

a img.alignright {
 float:right;
 margin: 5px 0 20px 20px;
 }

a img.alignnone {
 margin: 5px 20px 20px 0;
 }

a img.alignleft {
 float:left;
 margin: 5px 20px 20px 0;
 }

a img.aligncenter {
 display: block;
 margin-left: auto;
 margin-right: auto
 }

.wp-caption {
 background: #fff;
 border: 1px solid #f0f0f0;
 max-width: 96%; /* Image does not overflow the content area */
 padding: 5px 3px 10px;
 text-align: center;
 }

.wp-caption.alignnone {
 margin: 5px 20px 20px 0;
 }

.wp-caption.alignleft {
 margin: 5px 20px 20px 0;
 }

.wp-caption.alignright {
 margin: 5px 0 20px 20px;
 }

.wp-caption img {
 border: 0 none;
 height: auto;
 margin:0;
 max-width: 98.5%;
 padding:0;
 width: auto;
 }

.wp-caption p.wp-caption-text {
 font-size:11px;
 line-height:17px;
 margin:0;
 padding:0 4px 5px;
 }

&amp;nbsp;
</pre>
<p>Above CSS code is very important for every wordpress theme.</p>
<div id="attachment_6884" class="wp-caption alignnone<a href="http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/wordpress-write-post/" rel="attachment wp-att-6884"><img class="size-full wp-image-6884" title="wordpress-default css for wordpress theme" src="http://images.wordpressapi.com/wordpress-write-post.jpg" alt="wordpress-default css for wordpress theme" width="500" height="238" /></a><p class="wp-caption-text">wordpress-default css for wordpress theme</p></div>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/" title="wysiwyg wordpress theme editor">wysiwyg wordpress theme editor</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/10/24/wordpress-theme-wysiwyg-editor-default-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free SEO Friendly Aryaa WordPress Theme</title>
		<link>http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/</link>
		<comments>http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 19:46:50 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[banner management]]></category>
		<category><![CDATA[configuration options]]></category>
		<category><![CDATA[free theme]]></category>
		<category><![CDATA[free wp theme]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google Adsense]]></category>
		<category><![CDATA[magazine style]]></category>
		<category><![CDATA[mashable]]></category>
		<category><![CDATA[menu support]]></category>
		<category><![CDATA[social features]]></category>
		<category><![CDATA[widget support]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6719</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/DigCMS is our friend website. They launched the New Free SEO friendly wordpress theme called Aryaa. Aryaa wordpress theme is nice SEO friendly options. It is very SEO friendly because of powerful HTML Tags and Social Features. Normally Magazine style &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/<p>DigCMS is our friend website. They launched the New Free SEO friendly wordpress theme called Aryaa.</p>
<p>Aryaa wordpress theme is nice SEO friendly options. It is very SEO friendly  because of powerful HTML Tags and Social Features. Normally Magazine style themes are not free but This theme is  free for download.</p>
<p>This wordpress theme is similar to Mashable wordpress theme. One year before Mashable used wordpress theme same like Aryaa. We inspired by mashable site. Many people asked for develop theme like mashable. So you can download this theme and enjoy!</p>
<p>Full screen shot will look as follows:</p>
<div id="attachment_3103"><a rel="attachment wp-att-3103" href="http://digcms.com/wordpress-themes/aryaa/aryaa-wordpress-theme-full/"><img title="aryaa-wordpress-theme-full" src="http://digcms.com/wp-content/uploads/aryaa-wordpress-theme-full.png" alt="aryaa-wordpress-theme-full" width="614" height="1054" /></a>aryaa-wordpress-theme-full&nbsp;</p>
</div>
<p>It has Custom Menu and Widget support and multiple configuration options:</p>
<div id="attachment_6721" class="wp-caption alignnone<a rel="attachment wp-att-6721" href="http://wordpressapi.com/?attachment_id=6721"><img class="size-full wp-image-6721" title="aryaa-wordpress-theme-options" src="http://images.wordpressapi.com/aryaa-wordpress-theme-options.png" alt="aryaa-wordpress-theme-options" width="498" height="281" /></a><p class="wp-caption-text">aryaa-wordpress-theme-options</p></div>
<p>Aryaa has Theme control panel for managing the google Adsense, Facebook connect code, Twitter, facebook, Feedburner options.</p>
<div id="attachment_6722" class="wp-caption alignnone<a rel="attachment wp-att-6722" href="http://wordpressapi.com/?attachment_id=6722"><img class="size-full wp-image-6722" title="aryaa-wordpress-theme-admin-options" src="http://images.wordpressapi.com/aryaa-wordpress-theme-admin-options.png" alt="aryaa-wordpress-theme-admin-options" width="631" height="417" /></a><p class="wp-caption-text">aryaa-wordpress-theme-admin-options</p></div>
<p><strong>High Quality (HQ) Free WordPres Themes collection</strong>, Magazine Style, News Paper Style, 1 Columns, 2 Columns, Mixed Colums, Widgets,google adsense ready, Seo Friendly, and minimal, Fast loading and many more.</p>
<h3>What’s on Aryaa</h3>
<ul>
<li>Widget Support</li>
<li>WordPress 2.7 to 3.1 support</li>
<li>Fixed Width</li>
<li>2 columns</li>
<li>Right Sidebar</li>
<li>Google Ads</li>
<li>Gravatar Support</li>
<li>Custom Image Header</li>
<li>XHTML &amp; CSS valid</li>
<li>Minimal and Fast Loading</li>
<li><strong>WordPress 2.7 to current version</strong></li>
<li>Menu Support – Three Menu support – Header, Top, Footer</li>
<li>Premium version // Sub Page Menu</li>
<li>Premium version // Theme Options</li>
<li>Premium version // Banner Management</li>
<li>Premium version // Page Comment Templates</li>
<li>Premium version // FeedBurner Integration</li>
<li>Premium version // 2 Color Schemes ready</li>
<li>Premium version // Auto Generated Image (with or without custom fields)</li>
<li>Premium version // Beautiful Themes Options</li>
<li>Premium version // Features Post</li>
<li>Premium version // Social Bookmark integration</li>
<li>Premium version // and many more</li>
</ul>
<h2><a title="free wordpress theme - wpapi" href="http://wpdemo.digcms.com/?themedemo=aryaa" target="_blank">Demo</a> | <a href="http://digcms.com/wp-content/uploads/aryaa.zip" target="_blank">Download</a></h2>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/" title="css menu mashable">css menu mashable</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/25/free-seo-friendly-aryaa-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>share post or page without any wordpress plugin</title>
		<link>http://wordpressapi.com/2011/04/24/share-post-page-wordpress-plugin/</link>
		<comments>http://wordpressapi.com/2011/04/24/share-post-page-wordpress-plugin/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 13:11:23 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[del icio us]]></category>
		<category><![CDATA[design buzz]]></category>
		<category><![CDATA[dzone]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[http www google com]]></category>
		<category><![CDATA[phase 2]]></category>
		<category><![CDATA[php file]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[title url]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[www google com]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6175</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/24/share-post-page-wordpress-plugin/For social networking and sharing your article many people use the different wordpress plugins. But When you use the wordpress plugin for sharing article that will fire extra mysql request to database. Sometime your site will became slow or stop &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/24/share-post-page-wordpress-plugin/<p>For social networking and sharing your article many people use the different wordpress plugins. But When you use the wordpress plugin for sharing article that will fire extra mysql request to database. Sometime your site will became slow or stop functioning due to unwanted wordpress plugin.</p>
<p>I recommend not to use any wordpress plugin for sharing the article. You can use following code for sharing your article. You need to just add the following code in your wordpress theme files. just use following code in index.php or single.php file.</p>
<pre class="brush: php; title: ; notranslate">
For Designfloat
http://www.designfloat.com/submit.php?url=[URL]&amp;amp;title=[title] 

For Blogger
http://www.blogger.com/blog_this.pyra?t=&amp;amp;u=[URL]&amp;amp;l&amp;amp;n=[title]

For RSS feed
[URL]/feed/

For google buzz
http://www.google.com/reader/link?url=[URL]&amp;amp;title=[title]&amp;amp;snippet=[desc]&amp;amp;srcURL=[YOUR BLOG'S URL HERE]&amp;amp;srcTitle=[YOUR BLOG'S NAME HERE]

For Linked In
http://www.linkedin.com/shareArticle?mini=true&amp;amp;url=[URL]&amp;amp;title=[title]&amp;amp;summary=[desc]&amp;amp;source=digcms

For Mixx
http://www.mixx.com/submit?page_url={url}&amp;amp;title={title}

For Netvibes
http://www.netvibes.com/share?title=[title]&amp;amp;url=[URL]

Twitter:

http://twitter.com/home?status=[title]+[URL]
Facebook:

http://www.facebook.com/share.php?u=[URL]&amp;amp;title=[title]
Digg:

http://www.digg.com/submit?phase=2&amp;amp;url=[URL]&amp;amp;title=[title]
Mixx:

http://www.mixx.com/submit?page_url=[URL]&amp;amp;title=[title]
Delicious:

http://del.icio.us/post?url=[URL]&amp;amp;title=[title]&amp;amp;notes=[desc]
Google:

http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=[URL]&amp;amp;title=[title]&amp;amp;annotation=[desc]
Design Bump:

http://www.designbump.com/node/add/drigg/?url=[URL]&amp;amp;title=[title]&amp;amp;body=[desc]
Design Moo:

http://www.designmoo.com/node/add/drigg/?url=[URL]&amp;amp;title=[title]&amp;amp;body=[desc]
Design Buzz:

http://buzz.yahoo.com/buzz?targetUrl=[URL]&amp;amp;headline=[title]&amp;amp;summary=[desc]
DZone:

http://dzone.com/links/add.html?url=[URL]&amp;amp;title=[title]&amp;amp;description=[desc]
Tumblr

http://www.tumblr.com/share?v=3&amp;amp;u=[url]&amp;amp;t=[title]&amp;amp;s=[description]
Email1:

mailto:?subject=[title]&amp;amp;body=[URL]

Email2:

mailto:?subject=[title]&amp;amp;body=[description]
StumbleUpon:

http://www.stumbleupon.com/submit?url=[URL]&amp;amp;title=[title]
Reddit:

http://www.reddit.com/submit?url=[URL]&amp;amp;title=[title]
Technorati:

http://technorati.com/faves?add=[URL]&amp;amp;title=[title]
Newsvine:

http://www.newsvine.com/_tools/seed&amp;amp;save?u=[url]&amp;amp;h=[title]
Sphinn:

http://sphinn.com/submit.php?url=[url]&amp;amp;title=[title]
Slashdot:

http://slashdot.org/bookmark.pl?title=[title]&amp;amp;url=[url]
Ping.fm:

http://ping.fm/ref/?link=[url]&amp;amp;title=[title]&amp;amp;body=[desc]
Evernote:

http://www.evernote.com/clip.action?url=[URL]&amp;amp;title=[title]
Friendfeed:

http://www.friendfeed.com/share?url=[URL]&amp;amp;title=[title]
Sphinn

http://sphinn.com/index.php?c=post&amp;amp;m=submit&amp;amp;link=[url]
Blinklist

http://www.blinklist.com/index.php?Action=Blink/Addblink.php&amp;amp;Url=[url]&amp;amp;Title=[title]
Fark

http://cgi.fark.com/cgi/fark/farkit.pl?u=[url]&amp;amp;h=[title]
Propeller

http://www.propeller.com/submit/?url=[url]
Netvouz

http://www.netvouz.com/action/submitBookmark?url=[url]&amp;amp;title=[title]&amp;amp;popup=no
ShpereIt

http://www.sphere.com/search?q=sphereit:[url]&amp;amp;title=[title]
Live

https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;url=[url]&amp;amp;title=[title]
Myspace

http://www.myspace.com/Modules/PostTo/Pages/?u=[url]&amp;amp;t=[title]
Slashdot

http://slashdot.org/bookmark.pl?url=[url]&amp;amp;title=[title]
</pre>
<p>You just need to use the following code instead of [url]</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php the_permalink(); ?&gt;
</pre>
<p>For description use following code.</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php the_excerpt();
</pre>
<p>For Title use following code.</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php the_title(); ?&gt;
</pre>
<p>I used above code in digcms.com. You can check that on that site.</p>
<p>This will reduce you database queries.</p>
<div id="attachment_6710" class="wp-caption alignnone<a rel="attachment wp-att-6710" href="http://wordpressapi.com/?attachment_id=6710"><img class="size-full wp-image-6710" title="share post or page without any wordpress plugin" src="http://images.wordpressapi.com/share-post-or-page-without-any-wordpress-plugin.png" alt="share post or page without any wordpress plugin" width="250" height="250" /></a><p class="wp-caption-text">share post or page without any wordpress plugin</p></div>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/24/share-post-page-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how to develop wordpress theme with 978 grid system</title>
		<link>http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/</link>
		<comments>http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 07:41:56 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[978 gird]]></category>
		<category><![CDATA[978 grid system]]></category>
		<category><![CDATA[free wp theme]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[grid system]]></category>
		<category><![CDATA[grid theme]]></category>
		<category><![CDATA[page template]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[theme developers]]></category>
		<category><![CDATA[wp grid]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6613</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/Earlier 960 grid system was very popular among the wordpress theme developers. But 960 grid system is becoming older. Now days 978 grid system is becoming very popular. So I decided to create wordpress theme with 978 grid system. In &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/<p>Earlier 960 grid system was very popular among the wordpress theme developers. But 960 grid system is becoming older. Now days 978 grid system is becoming very popular. So I decided to create wordpress theme with 978 grid system.</p>
<p>In this article I will tell you how to create the wordpress theme with 978 grid system. For this you dont need to the PHP or wordpress API knowledge. If you are having basic HTML and CSS knowledge then also you can easily create the wordpress theme with 978 grid system. Main advantage of creating wordpress theme with grid system is SEO. If you add the grid system in your wordpress theme then that will be helpful for SEO also.</p>
<ul>
<li><strong>Setup the local development environment and wordpress</strong></li>
</ul>
<p>For local wordpress theme development you need to install PHP, Mysql, apache on your computer or laptop.If you are using the windows then you can install wamp or xxamp server on your machine. If you are using Linux or Max then you need to install the PHP, Mysql, Apache to your PC.</p>
<p>After Server setup first install the wordpress to your local box. Then go to your wordpress installation folder. Go to WordPress root folder and open following folder.</p>
<p><em>wp-content-&gt;themes</em></p>
<h2>Start developing new wordpress theme with 978 grid system.</h2>
<ul>
<li><strong>Create new theme folder in themes folder. (you can keep name as per your choice. I kept grid978 name for my wordpress theme)</strong></li>
</ul>
<ul>
<li><strong>For creating wordpress theme following files need to be created in theme folder(for me in grid978 folder)</strong></li>
</ul>
<p><strong>style.css</strong> &#8211; The main stylesheet. This must be included with your Theme, and it must contain the information header for your Theme.<br />
<strong>index.php</strong> -  The main template. If your Theme provides its own templates, index.php must be present.<br />
<strong>comments.php</strong> &#8211; The comments template.<br />
<strong>single.php</strong> -  The single post template. Used when a single post is queried. For this and all other query templates, index.php is used if the query template is not present.<br />
<strong>page.php</strong> &#8211; the page template. Used when an individual Page is queried.<br />
<strong>author.php</strong> &#8211; The author template. Used when an author is queried.<br />
<strong>archive.php</strong> -  The archive template. Used when a category, author, or date is queried. Note that this template will be overridden by category.php, author.php, and date.php for their respective query types.<br />
<strong>search.php</strong> &#8211; The search results template. Used when a search is performed.<br />
<strong>attachment.php</strong> -  Attachment template. Used when viewing a single attachment.<br />
<strong>image.php</strong> &#8211; Image attachment template. Used when viewing a single image attachment. If not present, attachment.php will be used.</p>
<p>Or If you are not having knowlege of creating those files then you can download the empty wordpress theme or you can download wordpress framework. Check following article and download empty framework.</p>
<p><a title="Permalink to List of free wordpress theme frameworks for wordpress theme developer" rel="bookmark" href="../2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/">List of free wordpress theme frameworks for wordpress theme developer</a></p>
<p>I always like the Twenty ten wordpress theme. If you are not having good knowledge of CSS then you need to download this theme form following URL. After downloading copy paste the all the files in to your theme folder.</p>
<h2><a href="http://wordpress.org/extend/themes/download/twentyten.1.1.zip" target="_blank">Twenty Ten</a></h2>
<p>Or If you are having good knowledge of CSS then you can download the complete naked and blank wordpress theme from following URL: (<em>I used the starkers wodpress framework</em>)</p>
<p><a href="http://starkerstheme.com/">http://starkerstheme.com/</a></p>
<ul>
<li><strong>Download the 978 grid system</strong></li>
</ul>
<p>Then go to following site and download the 978 grid system.</p>
<p><a href="http://978.gs/" target="_blank">http://978.gs/</a></p>
<div id="attachment_6618" class="wp-caption alignnone<a rel="attachment wp-att-6618" href="http://wordpressapi.com/?attachment_id=6618"><img class="size-full wp-image-6618" title="978 Grid System for Web Design" src="http://images.wordpressapi.com/978-Grid-System-for-Web-Design.png" alt="" width="400" height="361" /></a><p class="wp-caption-text">978 Grid System for Web Design</p></div>
<p>I downloaded the zip file called brothersroloff-978-Grid-System-9bea20f.zip file. I extracted the folder.The package comes with a lot of files. I just coped the 978 Templates\CS978.css file in my wordpress theme folder. I opened the file and copied css code into my theme style.php file.</p>
<ul>
<li><strong>Change your Theme name</strong></li>
</ul>
<p>Open your style.css file and put following code in that file.</p>
<pre class="brush: php; title: ; notranslate">

/*
Theme Name:grid978
Theme URI:http://wordpressapi.com
Description:The completely 978 grid system ready wordpress theme (Based on Twenty Ten)
Version:1.0
Author:wordpressapi.com
Author URI:http://wordpressapi.com
Tags:wordpressapi, grid, 978 grid, 3 column, clean, basic
*/
</pre>
<p>you need to change the theme name and other information as per your choice.</p>
<p>Create Screenshot.png file with size on 400 width and 350 height and put that in your theme folder. Now if you check your theme in wordpress admin section. Your theme will be visible in wordpress admin section.</p>
<div id="attachment_6619" class="wp-caption alignnone<a rel="attachment wp-att-6619" href="http://wordpressapi.com/?attachment_id=6619"><img class="size-full wp-image-6619" title="grid-978-theme-by-wordpressapi-com" src="http://images.wordpressapi.com/grid-978-theme-by-wordpressapi-com.png" alt="grid-978-theme-by-wordpressapi-com" width="561" height="249" /></a><p class="wp-caption-text">grid-978-theme-by-wordpressapi-com</p></div>
<ul>
<li><strong>Use Reset CSS in style.css file</strong></li>
</ul>
<p>You need to use the following style code in your style.css file for applying the reset CSS.</p>
<pre class="brush: php; title: ; notranslate">

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{background:transparent; border:0; margin:0; padding:0; vertical-align:baseline}
body{line-height:1}

h1, h2, h3, h4, h5, h6{clear:both; font-family:Helvetica,Arial,verdana,sans-serif}
ol, ul{list-style:none}
blockquote{quotes:none}
blockquote:before, blockquote:after{content:''; content:none}
del{text-decoration:line-through}
/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table{border-collapse:collapse; border-spacing:0}
a img{border:none}
</pre>
<p>If you taken the twenty ten theme as a base then you dont need to put reset css in that file.</p>
<ul>
<li><strong>Select your grid system and layout for your wordpress theme.</strong></li>
</ul>
<p>I planned the keep 390px as sidebar area and 558px as content area. For more information you can check following image.</p>
<p><a rel="attachment wp-att-6616" href="http://wordpressapi.com/?attachment_id=6616"><img class="alignnone size-full wp-image-6616" title="978 Grid System - CSS Framework" src="http://images.wordpressapi.com/978-Grid-System-CSS-Framework.png" alt="" width="982" height="733" /></a></p>
<p>Plan your layout for developing the wordpress theme with grid 978 system. I planned the following layout for creating the wordpress theme.</p>
<p><a rel="attachment wp-att-6617" href="http://wordpressapi.com/?attachment_id=6617"><img class="alignnone size-full wp-image-6617" title="grid978-wordpress-layout-by-wordpessapi-com" src="http://images.wordpressapi.com/grid978-wordpress-layout-by-wordpessapi-com.png" alt="" width="300" height="450" /></a></p>
<ul>
<li><strong>Start using the 978 grid system for building the theme</strong></li>
</ul>
<p><strong>Note :</strong>In this tutorial I am given the whole wordpress theme files for download with all the assets. You can download the our grid978 wordpress theme and check the code.</p>
<p>For setting the main container. I first opened the header.php file and inserted the following code after the body tag.</p>
<pre class="brush: php; title: ; notranslate">

&lt;div class='layout-978'&gt;
</pre>
<p>Then I opened the footer.php file and before wp_footer() function put the close div code.</p>
<ul>
<li><strong>Setting header and menu section using 978 grid system.</strong></li>
</ul>
<p>Open your header.php file and after &#8216;layout-978&#8242; div put following code in file.</p>
<pre class="brush: php; title: ; notranslate">

&lt;div class='row header'&gt;

// Here is all header and menu code

&lt;/div&gt;
</pre>
<ul>
<li><strong>Setting footer section using 978 grid system.</strong></li>
</ul>
<p>Open your footer.php file and after &#8216;layout-978&#8242; div put following code in file.</p>
<pre class="brush: php; title: ; notranslate">

&lt;div class='row footer'&gt;

// Here is all footer code

&lt;/div&gt;
</pre>
<ul>
<li><strong>Setting up the main content area and sidebar area with grid 978 system</strong></li>
</ul>
<p>Using following code you can set the main content area and sidebar.</p>
<pre class="brush: php; title: ; notranslate">

&lt;div class='row'&gt;
&lt;div class='col7'&gt;
// Main content Area
// This block code used in loop.php, single.php and page.php file
&lt;/div&gt;
&lt;div class='col5'&gt;
// Top Side bar Area
// This block code used in sidebar.php file
&lt;/div&gt;
&lt;div class='col5'&gt;
// Main Side bar Area
// This block code used in sidebar.php file
&lt;div class='col2'&gt;
// Primary Side bar Area
// This block code used in sidebar.php file
&lt;/div&gt;
&lt;div class='col3'&gt;
// Secondary Side bar Area
// This block code used in sidebar.php file
&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>For this I used the header.php, footer.php, singe.php, page.php and sidebar.php file.</p>
<p><strong>Note :</strong> In this tutorial I am given the whole wordpress theme files for download  with all the assets. You can download the our grid978 wordpress theme  and check the code.</p>
<ul>
<li>Set the content width for your theme</li>
</ul>
<p>Open your functions.php file and find the following code and replace it to</p>
<pre class="brush: php; title: ; notranslate">

if ( ! isset( $content_width ) )
 $content_width = 558;
</pre>
<ul>
<li>Set the menu with CSS style</li>
</ul>
<p>For multilevel menu support you need to put the following code in to your style.css file.</p>
<pre class="brush: php; title: ; notranslate">

/* =Menu
-------------------------------------------------------------- */
#access{display:block; float:left; background:#51011f; margin:0 auto; width:978px; border-bottom:1px solid #28000f}
#access .menu-header,
div.menu{font-size:14px; font-weight:bold; margin-left:0px; width:978px; text-shadow:1px 1px 1px #000}
#access .menu-header ul,
div.menu ul{list-style:none; margin:0}
#access .menu-header li,
div.menu li{float:left; position:relative}
#access a{color:#fff; display:block; line-height:34px; /*line-height:38px; */padding:0 10px; text-decoration:none}
#access ul ul{box-shadow:0px 3px 3px rgba(0,0,0,0.2); -moz-box-shadow:0px 3px 3px rgba(0,0,0,0.2); -webkit-box-shadow:0px 3px 3px rgba(0,0,0,0.2); display:none; position:absolute; top:34px; left:0; float:left; width:180px; z-index:99999}
#access ul ul li{min-width:180px}
#access ul ul ul{left:100%; top:0}
#access ul ul a{background:#51011f; line-height:1em; padding:10px; width:160px; height:auto; opacity:0.9; color:#fff}
#access li:hover &gt;a,
#access ul ul:hover &gt;a{color:#B8F01C}
#access ul li:hover &gt;ul{display:block}
#access ul li.current_page_item &gt;a,
#access ul li.current-menu-ancestor &gt;a,
#access ul li.current-menu-item &gt;a,
#access ul li.current-menu-parent &gt;a{color:#fff; background:transparent url(images/arrow2.png) top center no-repeat}
#access ul ul li.current_page_item &gt;a,
#access ul ul li.current-menu-ancestor &gt;a,
#access ul ul li.current-menu-item &gt;a,
#access ul ul li.current-menu-parent &gt;a{color:#fff; background:#853E08}
* html #access ul li.current_page_item a,
* html #access ul li.current-menu-ancestor a,
* html #access ul li.current-menu-item a,
* html #access ul li.current-menu-parent a,
* html #access ul li a:hover{color:#fff; background:#853E08}
</pre>
<p>You can change this code as per your wordpress design and colors.</p>
<ul>
<li><strong>Set the footer widget area</strong></li>
</ul>
<p>Open your functions.php file and find and replace the following code.</p>
<p>find before_widget section for footer section and add the div with class &#8220;col3&#8243;. I used the 222px grid size for footer widget section.</p>
<p>You can add this code in sidebar-footer.php file also. you just need to add the div with class &#8220;col3&#8243; before all widgets.</p>
<p><em><strong>Your wordpress theme is completed with 978 grid system.</strong></em> You can change and add more styles to your wordpress theme as per your design and colors.</p>
<ul>
<li><strong>How theme is looking</strong></li>
</ul>
<p>After creating theme is looking as follows:</p>
<p><a rel="attachment wp-att-6620" href="http://wordpressapi.com/?attachment_id=6620"><img class="alignnone size-full wp-image-6620" title="grid978-free-wordpress-theme" src="http://images.wordpressapi.com/grid978-free-wordpress-theme.png" alt="" width="999" height="3538" /></a></p>
<ul>
<li><strong>How to mange the widget section the grid978 wordpress theme.</strong></li>
</ul>
<p>If you check your wordpress admin area. Go to appearance-&gt;Widgets section. This will look as follows:</p>
<p><a rel="attachment wp-att-6621" href="http://wordpressapi.com/?attachment_id=6621"><img class="alignnone size-full wp-image-6621" title="grid-978-theme-widget-section-by-wordpressapi-com" src="http://images.wordpressapi.com/grid-978-theme-widget-section-by-wordpressapi-com.png" alt="" width="600" height="295" /></a></p>
<p>Apart from this you can mange the Menu, Background and header image from this wordpress theme.</p>
<p>You can download the complete source code here.</p>
<p><a title="Download the grid978 wordpress theme" href="http://images.wordpressapi.com/grid978.zip" target="_blank">Download Source Code</a></p>
<p>If you want to see the Demo of Grid978 wordpress theme then you need to check following URL:</p>
<p><a title="grid978 wordpress theme demo" href="http://digcms.com/wordpress-themes/grid978/" target="_blank">Grid978 Theme Demo</a> | <a href="http://digcms.com/wordpress-themes/grid978/" target="_blank">Download</a></p>
<p>This 978 gird system based free wordpress theme framework is created by wordpressapi.com. If you are having any doubts about developing wordpress theme with 978 grid system then you can write to me on wordpressapi@gmail.com</p>
<p><a rel="attachment wp-att-6623" href="http://wordpressapi.com/?attachment_id=6623"><img class="alignnone size-full wp-image-6623" title="how to develop wordpress theme with 978 grid system" src="http://images.wordpressapi.com/how-to-develop-wordpress-theme-with-978-grid-system.png" alt="" width="400" height="361" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="978 gs wordpress">978 gs wordpress</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="978 grid">978 grid</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="theme wordpress in 960 grid">theme wordpress in 960 grid</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="978 grid tutorial">978 grid tutorial</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress api theme width">wordpress api theme width</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress grid theme tutorial">wordpress grid theme tutorial</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress grid system">wordpress grid system</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="installer grid sur wordpress">installer grid sur wordpress</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="978 gs tutorial">978 gs tutorial</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress grid theme developer">wordpress grid theme developer</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="random grid wordpress theme">random grid wordpress theme</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress theme grid">wordpress theme grid</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="tutorial 978 grid system">tutorial 978 grid system</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="using 978 grid">using 978 grid</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress theme design grid">wordpress theme design grid</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress building a grid system">wordpress building a grid system</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress grid themes">wordpress grid themes</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="wordpress grid theme">wordpress grid theme</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="plugin wordpress grid system 960 rar">plugin wordpress grid system 960 rar</a></li><li><a href="http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/" title="how to make grid page template for wordpress theme">how to make grid page template for wordpress theme</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/17/how-to-develop-wordpress-theme-with-978-grid-system/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Free wordpress 3.0 ready themes of 2011</title>
		<link>http://wordpressapi.com/2011/04/16/free-wordpress-3-0-ready-themes-of-2011/</link>
		<comments>http://wordpressapi.com/2011/04/16/free-wordpress-3-0-ready-themes-of-2011/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 08:37:39 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[wp 3.0]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6589</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/16/free-wordpress-3-0-ready-themes-of-2011/From wordpress 3.0 version so many new features added in to wordpress. We need to modify the wordpress themes as per wordpress 3.0 standards. WordPress created some wordpress framework for creating the wordpress 3.0 ready themes. For more information you &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/16/free-wordpress-3-0-ready-themes-of-2011/<p>From wordpress 3.0 version so many new features added in to wordpress. We need to modify the wordpress themes as per wordpress 3.0 standards. WordPress created some wordpress framework for creating the wordpress 3.0 ready themes. For more information you need to check following article for checking free wordpress 3.0 ready frameworks.</p>
<p><a title="Permalink to List of free wordpress theme frameworks for wordpress theme developer" rel="bookmark" href="../2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/">List of free wordpress theme frameworks for wordpress theme developer</a></p>
<p><a rel="attachment wp-att-6610" href="http://wordpressapi.com/?attachment_id=6610"><img class="alignnone size-full wp-image-6610" title="Free wordpress 3- ready themes of 2011" src="http://images.wordpressapi.com/Free-wordpress-3-ready-themes-of-2011.png" alt="" width="400" height="400" /></a></p>
<p>In this article I created the list of some very nice wordpress themes which are wordpress 3.0 ready.</p>
<h2><a href="http://digcms.com/wordpress-themes/wpapi/" target="_blank"><strong>wpapi</strong></a></h2>
<p><a rel="attachment wp-att-6592" href="http://wordpressapi.com/?attachment_id=6592"><img class="alignnone size-full wp-image-6592" title="wpapi-free-wordpress-theme" src="http://images.wordpressapi.com/wpapi-free-wordpress-theme1.png" alt="" width="500" height="435" /></a></p>
<p><a href="http://wpdemo.digcms.com/?themedemo=wpapi">Demo</a> | <a title="wpapi" href="http://digcms.com/wordpress-themes/wpapi/">Download</a></p>
<h2><a href="http://newwpthemes.com/wordpress-theme/marticorp/" target="_blank">MartiCorp</a></h2>
<p><a rel="attachment wp-att-6593" href="http://wordpressapi.com/?attachment_id=6593"><img class="alignnone size-full wp-image-6593" title="480_MartiCorp" src="http://images.wordpressapi.com/480_MartiCorp.jpg" alt="" width="480" height="360" /></a></p>
<p><a href="http://newwpthemes.com/demo/MartiCorp/" target="_blank">Demo </a>| <a href="http://newwpthemes.com/downloads/?theme=marticorp" target="_blank">Download</a></p>
<h2><a href="http://newwpthemes.com/wordpress-theme/gamesawe/" target="_blank">GamesAwe</a></h2>
<p><a rel="attachment wp-att-6594" href="http://wordpressapi.com/?attachment_id=6594"><img class="alignnone size-full wp-image-6594" title="480_GamesAwe" src="http://images.wordpressapi.com/480_GamesAwe.jpg" alt="" width="480" height="360" /></a></p>
<p><a href="http://newwpthemes.com/demo/GamesAwe/" target="_blank">Demo </a>| <a href="http://newwpthemes.com/downloads/?theme=gamesawe" target="_blank">Download</a></p>
<h2><a href="http://www.woothemes.com/2010/06/tma/">The Morning After</a></h2>
<p><a rel="attachment wp-att-6595" href="http://wordpressapi.com/?attachment_id=6595"><img class="alignnone size-full wp-image-6595" title="wp3_themes_01" src="http://images.wordpressapi.com/wp3_themes_01.jpg" alt="" width="640" height="400" /></a></p>
<p><a title="wordpressapi.com" href="http://www.woothemes.com/demo/tma/" target="_blank">Demo </a>| <a title="wordpressapi.com" href="http://www.woothemes.com/free-themes/TMA" target="_blank">Download</a></p>
<h2><a href="http://digcms.com/wordpress-themes/alloka/" target="_blank"><strong>Alloka</strong></a></h2>
<p><a rel="attachment wp-att-6596" href="http://wordpressapi.com/?attachment_id=6596"><img class="alignnone size-full wp-image-6596" title="alloka-wordpress-theme-thumb-309x314" src="http://images.wordpressapi.com/alloka-wordpress-theme-thumb-309x314.png" alt="" width="309" height="314" /></a></p>
<p><a href="http://digcms.com/wordpress-themes/">Demo</a> | <a title="Alloka" href="http://digcms.com/wordpress-themes/alloka/">Download</a></p>
<h2><a href="http://www.simplewpthemes.com/2011/02/arnables-tribune/" target="_blank">Arnables Tribune</a></h2>
<p><a rel="attachment wp-att-6597" href="http://wordpressapi.com/?attachment_id=6597"><img class="alignnone size-full wp-image-6597" title="arnablestribune-wordpress-themes" src="http://images.wordpressapi.com/arnablestribune-wordpress-themes.jpg" alt="" width="500" height="326" /></a></p>
<p><a href="http://www.simplewpthemes.com/demo/theme/?wptheme=ArnablesTribune" target="_blank">Demo </a>| <a href="http://www.simplewpthemes.com/download/ArnablesTribune.zip" target="_blank">Download</a></p>
<h2><a href="http://www.organicthemes.com/themes/structure-theme/">Structure</a></h2>
<p><a rel="attachment wp-att-6598" href="http://wordpressapi.com/?attachment_id=6598"><img class="alignnone size-full wp-image-6598" title="wp3_themes-structure" src="http://images.wordpressapi.com/wp3_themes-structure.jpg" alt="" width="640" height="400" /></a></p>
<p><a href="http://organicthemes.com/demo/structure/" target="_blank">Demo</a> | <a href="http://www.organicthemes.com/themes/structure-theme/" target="_blank">Download</a></p>
<h2><a href="http://digcms.com/wordpress-themes/ajooba/" target="_blank">Ajooba</a></h2>
<p><a rel="attachment wp-att-6599" href="http://wordpressapi.com/?attachment_id=6599"><img class="alignnone size-large wp-image-6599" title="ajooba-theme" src="http://images.wordpressapi.com/ajooba-theme1-800x477.png" alt="" width="500" height="298" /></a></p>
<p><a href="http://wpdemo.digcms.com/?themedemo=ajooba">Demo</a> | <a title="Ajooba" href="http://digcms.com/wordpress-themes/ajooba/">Download</a></p>
<h2><a href="http://www.simplewpthemes.com/2011/02/greenos-magazine/" target="_blank">Greenos Magazine</a></h2>
<p><a rel="attachment wp-att-6600" href="http://wordpressapi.com/?attachment_id=6600"><img class="alignnone size-full wp-image-6600" title="greenos-wordpress-magazine-theme" src="http://images.wordpressapi.com/greenos-wordpress-magazine-theme.jpg" alt="" width="500" height="340" /></a></p>
<p><a href="http://www.simplewpthemes.com/demo/theme/?wptheme=GreenosMagazine" target="_blank">Demo</a> | <a href="http://www.simplewpthemes.com/download/GreenosMagazine.zip" target="_blank">Download</a></p>
<h2><a href="http://graphpaperpress.com/themes/mansion/">Mansion</a></h2>
<p><a rel="attachment wp-att-6601" href="http://wordpressapi.com/?attachment_id=6601"><img class="alignnone size-full wp-image-6601" title="wp3_themes-mansion" src="http://images.wordpressapi.com/wp3_themes-mansion.jpg" alt="" width="640" height="400" /></a></p>
<p><a href="http://demo.graphpaperpress.com/mansion/" target="_blank">Demo</a> | <a href="http://graphpaperpress.com/themes/mansion/" target="_blank">Download</a></p>
<h2><a href="http://digcms.com/wordpress-themes/apticus/" target="_blank">Apticus</a></h2>
<p><a rel="attachment wp-att-6602" href="http://wordpressapi.com/?attachment_id=6602"><img class="alignnone size-full wp-image-6602" title="apticus-thumb" src="http://images.wordpressapi.com/apticus-thumb1.png" alt="" width="432" height="313" /></a></p>
<p><a href="http://wpdemo.digcms.com/?themedemo=apticus">Demo</a> | <a title="Apticus" href="http://digcms.com/wordpress-themes/apticus/">Download</a></p>
<h2><a href="http://www.simplewpthemes.com/2011/02/fetolinos-magazine/" target="_blank">Fetolinos Magazine</a></h2>
<p><a rel="attachment wp-att-6603" href="http://wordpressapi.com/?attachment_id=6603"><img class="alignnone size-full wp-image-6603" title="fetolinos-wordpress-magazine-theme" src="http://images.wordpressapi.com/fetolinos-wordpress-magazine-theme.jpg" alt="" width="500" height="320" /></a></p>
<p><a href="http://www.simplewpthemes.com/demo/theme/?wptheme=FetolinosMagazine" target="_blank">Demo</a> | <a href="http://www.simplewpthemes.com/download/FetolinosMagazine.zip" target="_blank">Download</a></p>
<h2><a href="http://www.smashingmagazine.com/2009/02/23/magazeen-free-magazine-look-wordpress-theme/">Magazeen</a></h2>
<p><a rel="attachment wp-att-6604" href="http://wordpressapi.com/?attachment_id=6604"><img class="alignnone size-full wp-image-6604" title="wp3_themes-magazeen" src="http://images.wordpressapi.com/wp3_themes-magazeen.jpg" alt="" width="640" height="400" /></a></p>
<p><a href="http://demo.wefunction.com/?wptheme=Magazeen" target="_blank">Demo</a> | <a href="http://media.smashingmagazine.com/cdn_smash/images/magazeen-wordpress-theme/magazeen-wordpress-theme.zip" target="_blank">Download</a></p>
<h2><a href="http://freepremiumwp.com/pro-fashion.html" target="_blank">PRO Fashion</a></h2>
<p><a rel="attachment wp-att-6605" href="http://wordpressapi.com/?attachment_id=6605"><img class="alignnone size-full wp-image-6605" title="PROFashion-wordpress-theme" src="http://images.wordpressapi.com/PROFashion-wordpress-theme.jpg" alt="" width="500" height="327" /></a></p>
<p><a href="http://freepremiumwp.com/PROFashion/" target="_blank">Demo</a> | <a href="http://freepremiumwp.com/downloads/PROFashion.zip" target="_blank">Download</a></p>
<h2><a href="http://yoshz.com/free-themes/whitegreen/" target="_blank">White Green</a></h2>
<p><a rel="attachment wp-att-6606" href="http://wordpressapi.com/?attachment_id=6606"><img class="alignnone size-full wp-image-6606" title="white-green-wordpress-theme" src="http://images.wordpressapi.com/white-green-wordpress-theme.jpg" alt="" width="500" height="306" /></a></p>
<p><a href="http://yoshz.com/theme/?wptheme=WhiteGreen" target="_blank">Demo</a> | <a href="http://yoshz.com/downloads/WhiteGreen" target="_blank">Download</a></p>
<h2><a href="http://www.simplewpthemes.com/2011/02/cenutis-magazine/" target="_blank">Cenuti</a></h2>
<h2><a rel="attachment wp-att-6607" href="http://wordpressapi.com/?attachment_id=6607"><img class="alignnone size-full wp-image-6607" title="cenutis-wordpress-magazine-theme" src="http://images.wordpressapi.com/cenutis-wordpress-magazine-theme.jpg" alt="" width="500" height="345" /></a></h2>
<p><a href="http://www.simplewpthemes.com/demo/theme/?wptheme=CenutisMagazine" target="_blank">Demo</a> | <a href="http://www.simplewpthemes.com/download/CenutisMagazine.zip" target="_blank">Download</a></p>
<h2><a href="http://dukapress.com/blog/2011/02/05/begi-wordpress-e-commerce-theme/" target="_blank">Begi</a></h2>
<h2><a rel="attachment wp-att-6608" href="http://wordpressapi.com/?attachment_id=6608"><img class="alignnone size-full wp-image-6608" title="begi-ecommerce-wordpress-theme" src="http://images.wordpressapi.com/begi-ecommerce-wordpress-theme.jpg" alt="" width="500" height="302" /></a></h2>
<p><a href="http://madoido.com/begi/" target="_blank">Demo</a> | <a href="http://dukapress.com/wp-content/plugins/download-monitor/download.php?id=5" target="_blank">Download</a></p>
<p>This list is created by wordpressapi.com. If you want to suggest us more wordpress themes then please write to me on wordpressapi@gmail.com or put comment.</p>
<p><strong><br />
</strong></p>
<p><strong><br />
</strong></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/16/free-wordpress-3-0-ready-themes-of-2011/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Amazing and great google adsense ready free wordpress themes</title>
		<link>http://wordpressapi.com/2011/04/11/amazing-and-great-google-adsense-ready-free-wordpress-themes/</link>
		<comments>http://wordpressapi.com/2011/04/11/amazing-and-great-google-adsense-ready-free-wordpress-themes/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 14:23:36 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Free Wordpress Themes]]></category>
		<category><![CDATA[google Adsense]]></category>
		<category><![CDATA[making money online]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6498</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/11/amazing-and-great-google-adsense-ready-free-wordpress-themes/Many people is having target for making money form blog or websites. Google Adsense is great source for making money online. If you having blog with good content then you can easily make money from blog. You just need to &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/11/amazing-and-great-google-adsense-ready-free-wordpress-themes/<p>Many people is having target for making money form blog or websites. Google Adsense is great source for making money online. If you having blog with good content then you can easily make money from blog.</p>
<p>You just need to use the good google adsense ready wordpress theme for blog. That will be helpful to you for making money fast. here I created I list of great google adsense ready free wordpress themes.</p>
<h2><a href="http://www.vklabs.com/wordpress-themes/wordpress-theme-ad-flex-niche.php" target="_blank">Ad Flex Blog &amp; Niche Themes</a></h2>
<p><a rel="attachment wp-att-6499" href="http://wordpressapi.com/?attachment_id=6499"><img class="alignnone size-large wp-image-6499" title="adflex" src="http://images.wordpressapi.com/adflex-800x485.jpg" alt="" width="500" height="303" /></a></p>
<p><a title="Ad Flex WordPress Theme Adsense" href="http://www.vklabs.com/wordpress-themes/wordpress-theme-ad-flex-niche.php" target="_blank">Demo</a>| <a title="Ad Flex WordPress Theme Adsense" href="http://www.vklabs.com/wordpress-themes/ad-flex-niche-0.8.9.8b.zip" target="_blank">Download</a></p>
<h2><a href="http://www.sapiensbryan.com/index.php/my-wordpress-theme-ads-minded/" target="_blank">AdsMinded Adsense Theme</a></h2>
<p><a rel="attachment wp-att-6500" href="http://wordpressapi.com/?attachment_id=6500"><img class="alignnone size-full wp-image-6500" title="admindedtheme" src="http://images.wordpressapi.com/admindedtheme.jpg" alt="" width="420" height="315" /></a></p>
<p><a title="AdsMinded Adsense WordPress Theme" href="http://www.sapiensbryan.com/index.php/my-wordpress-theme-ads-minded/" target="_blank">Demo</a>| <a title="Adsminded WordPress Theme" href="http://www.sapiensbryan.com/download.php?title=AdsMindedWordpressTheme" target="_blank">Download</a></p>
<h2><a href="http://wordpress.isnaini.com/" target="_blank">Merah Putih</a></h2>
<p><a rel="attachment wp-att-6502" href="http://wordpressapi.com/?attachment_id=6502"><img class="alignnone size-large wp-image-6502" title="merahputih" src="http://images.wordpressapi.com/merahputih-800x470.jpg" alt="" width="500" height="293" /></a></p>
<p><a title="Wordpress Adsense Theme" href="http://wordpress.isnaini.com/" target="_blank">Demo</a> | <a title="Adsense WordPress Theme" href="http://www.isnaini.com/upload/merahputih.zip" target="_blank">Download</a></p>
<h2><a href="http://pilkster.com/seo-adsense-wordpress-theme/" target="_blank">SEO Adsense</a></h2>
<p><a rel="attachment wp-att-6503" href="http://wordpressapi.com/?attachment_id=6503"><img class="alignnone size-full wp-image-6503" title="wordpresstheme-seoadsense" src="http://images.wordpressapi.com/wordpresstheme-seoadsense.jpg" alt="" width="300" height="225" /></a></p>
<p><a title="SEO Adsense WordPress Theme" href="http://pilkster.com/seo-adsense-wordpress-theme/" target="_blank">Demo</a> | <a title="SEO Adsense WordPress Theme" href="http://pilkster.com/wp-content/uploads/2006/12/Adformat.zip" target="_blank">Download</a></p>
<h2><a href="http://blog-themes.kalinawebdesigns.com/new-theme-wp-colors/" target="_blank">WP Colors</a></h2>
<p><a rel="attachment wp-att-6504" href="http://wordpressapi.com/?attachment_id=6504"><img class="alignnone size-full wp-image-6504" title="wp-colors-wordpresstheme" src="http://images.wordpressapi.com/wp-colors-wordpresstheme.gif" alt="" width="300" height="441" /></a></p>
<p><a title="WP Colors WordPress Theme" href="http://blog-themes.kalinawebdesigns.com/new-theme-wp-colors/" target="_blank">Demo</a> | <a href="http://blog-themes.kalinawebdesigns.com/downloader/wpcolors-blue-orange-fluid-2col.zip" target="_blank">Download</a></p>
<h2><a href="http://wordpress.isnaini.com/index.php?wptheme=130106" target="_blank">030106 WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6505" href="http://wordpressapi.com/?attachment_id=6505"><img class="alignnone size-large wp-image-6505" title="adsensereadywordpresstheme" src="http://images.wordpressapi.com/adsensereadywordpresstheme-800x489.jpg" alt="" width="500" height="305" /></a></p>
<p><a title="Adsense Ready Theme" href="http://wordpress.isnaini.com/index.php?wptheme=130106" target="_blank">Demo</a> | <a title="Adsense ready wordpress themes" href="http://www.isnaini.com/upload/011306.zip" target="_blank">Download</a></p>
<h2><a href="http://timyang.com/2005/11/problogger-clean-theme-for-wordpress/" target="_blank">Problogger Clean WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6506" href="http://wordpressapi.com/?attachment_id=6506"><img class="alignnone size-full wp-image-6506" title="wordpresstheme-problogger" src="http://images.wordpressapi.com/wordpresstheme-problogger.jpg" alt="" width="300" height="205" /></a></p>
<p><a title="Problogger Clean WordPress Theme" href="http://timyang.com/2005/11/problogger-clean-theme-for-wordpress/" target="_blank">Demo</a> | <a title="Wordpress Adsense Theme Problogger" href="http://timyang.com/wp-content/downloads/problogger-clean.zip" target="_blank">Download</a></p>
<h2><a href="http://www.monetizingtheweb.com/wordpress-theme-mw/" target="_blank"> MW WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6507" href="http://wordpressapi.com/?attachment_id=6507"><img class="alignnone size-large wp-image-6507" title="adsensereadywordpressthememw" src="http://images.wordpressapi.com/adsensereadywordpressthememw-800x486.jpg" alt="" width="500" height="303" /></a></p>
<p><a title="MW WordPress Theme for Adsense" href="http://www.monetizingtheweb.com/wordpress-theme-mw/" target="_blank">Demo</a> | <a title="Adsense WordPress Theme MW" href="http://www.monetizingtheweb.com/mw1.2.zip" target="_blank">Download</a></p>
<h2><a href="http://themey.com/adsense-wordpress-theme/" target="_blank">Adsense Theme</a></h2>
<p><a rel="attachment wp-att-6508" href="http://wordpressapi.com/?attachment_id=6508"><img class="alignnone size-large wp-image-6508" title="adsensethemeforwordpress" src="http://images.wordpressapi.com/adsensethemeforwordpress-569x600.jpg" alt="" width="500" height="527" /></a></p>
<p><a title="Adsense Theme" href="http://themey.com/adsense-wordpress-theme/" target="_blank">Demo</a> | <a title="download adsense ready wordpress theme" href="http://themey.com/wp-content/downloads/AdSense.zip" target="_blank">Download</a></p>
<h2><a href="http://www.doshdosh.com/bluesense-theme/" target="_blank"> Blue Sense WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6509" href="http://wordpressapi.com/?attachment_id=6509"><img class="alignnone size-full wp-image-6509" title="bluesense-adsense-wordpress-theme" src="http://images.wordpressapi.com/bluesense-adsense-wordpress-theme.jpg" alt="" width="506" height="551" /></a></p>
<p><a title="adsense theme for wordpress" href="http://www.doshdosh.com/bluesense-theme/" target="_blank">Demo</a> | <a title="download wp theme" href="http://www.doshdosh.com/wp-content/BlueSense.zip" target="_blank">Download</a></p>
<h2><a href="http://www.onlyblogthemes.com/" target="_blank">Citrus Sense WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6510" href="http://wordpressapi.com/?attachment_id=6510"><img class="alignnone size-full wp-image-6510" title="citruswordpressadsensetheme" src="http://images.wordpressapi.com/citruswordpressadsensetheme.jpg" alt="" width="400" height="325" /></a></p>
<p><a title="wordpress citrus sense theme" href="http://www.onlyblogthemes.com/" target="_blank">Demo</a> | <a title="wordpress theme citrus sense" href="http://themes.wordpress.net/download.php?theme=3103" target="_blank">Download</a></p>
<h2><a href="http://www.golod.com/wordpress-themes/adsense-ready-theme/" target="_blank">Adsense Ready WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6511" href="http://wordpressapi.com/?attachment_id=6511"><img class="alignnone size-full wp-image-6511" title="adsensewptheme" src="http://images.wordpressapi.com/adsensewptheme.jpg" alt="" width="300" height="186" /></a></p>
<p><a title="Adsense Ready WP Theme" href="http://www.golod.com/wordpress-themes/adsense-ready-theme/" target="_blank">Demo</a> | <a title="adsense ready wp theme" href="http://www.golod.com/files/adsenseready.tar" target="_blank">Download</a></p>
<h2><a href="http://www.connectedinternet.co.uk/category/projects/wordpress/" target="_blank">TypoXP Reloaded WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6512" href="http://wordpressapi.com/?attachment_id=6512"><img class="alignnone size-full wp-image-6512" title="typoxp-reloaded-wordpressadsensereadytheme" src="http://images.wordpressapi.com/typoxp-reloaded-wordpressadsensereadytheme.jpg" alt="" width="350" height="212" /></a></p>
<p><a title="Adsense Ready Theme" href="http://www.connectedinternet.co.uk/category/projects/wordpress/" target="_blank">Demo</a> | <a title="download adsense theme" href="http://themes.wordpress.net/download.php?theme=1510" target="_blank">Download</a></p>
<h2><a href="http://www.morearnings.com/2006/08/15/wordpress-theme-connections-with-google-adsense/" target="_blank">Connection with Adsense WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6513" href="http://wordpressapi.com/?attachment_id=6513"><img class="alignnone size-full wp-image-6513" title="connections-theme-adsense-home-small" src="http://images.wordpressapi.com/connections-theme-adsense-home-small.jpg" alt="" width="200" height="181" /></a></p>
<p><a title="wordpress themes" href="http://www.morearnings.com/2006/08/15/wordpress-theme-connections-with-google-adsense/" target="_blank">Demo</a> | <a title="wordpress templates" href="http://www.morearnings.com/wordpress-themes/connections-adsense-01.zip" target="_blank">Download</a></p>
<h2><a href="http://www.morearnings.com/2006/08/30/wordpress-theme-almost-spring-with-google-adsense/" target="_blank">Almost Spring SEO with Adsense Ads</a></h2>
<p><a rel="attachment wp-att-6514" href="http://wordpressapi.com/?attachment_id=6514"><img class="alignnone size-full wp-image-6514" title="almost-spring-theme-adsense-home-small" src="http://images.wordpressapi.com/almost-spring-theme-adsense-home-small.jpg" alt="" width="200" height="167" /></a></p>
<p><a title="almost spring wordpress theme" href="http://www.morearnings.com/2006/08/30/wordpress-theme-almost-spring-with-google-adsense/" target="_blank">Demo</a> | <a title="almost spring seo wordpress theme" href="http://www.morearnings.com/wordpress-themes/almost-spring-adsense-seo-02.zip" target="_blank">Download</a></p>
<h2><a href="http://www.hosterio.com/blog/bubbles-adsense-integrated-free-wordpress-theme/" target="_blank">Bubbles Adsense Theme</a></h2>
<p><a rel="attachment wp-att-6515" href="http://wordpressapi.com/?attachment_id=6515"><img class="alignnone size-full wp-image-6515" title="orange-adsense-theme" src="http://images.wordpressapi.com/orange-adsense-theme.jpg" alt="" width="300" height="225" /></a></p>
<p><a title="wordpress themes for google adsense" href="http://www.hosterio.com/blog/bubbles-adsense-integrated-free-wordpress-theme/" target="_blank">Demo</a> | <a title="adsense theme" href="http://www.hosterio.com/download/download.php?file=3" target="_blank">Download</a></p>
<h2><a href="http://www.morearnings.com/2006/08/13/wordpress-theme-blix-with-google-adsense/" target="_blank">Blix with Adsense WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6516" href="http://wordpressapi.com/?attachment_id=6516"><img class="alignnone size-full wp-image-6516" title="blix-theme-adsense-home-small" src="http://images.wordpressapi.com/blix-theme-adsense-home-small.jpg" alt="" width="200" height="158" /></a></p>
<p><a title="blix adsense theme" href="http://www.morearnings.com/2006/08/13/wordpress-theme-blix-with-google-adsense/" target="_blank">Demo</a> | <a title="blix wordpress theme" href="http://www.morearnings.com/wordpress-themes/blix-adsense-02.zip" target="_blank">Download</a></p>
<h2><a href="http://www.headsetoptions.org/2007/05/08/free-adsense-web-20-wordpress-theme/" target="_blank">Elite Circle WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6517" href="http://wordpressapi.com/?attachment_id=6517"><img class="alignnone size-full wp-image-6517" title="elitecirclewordpresstheme" src="http://images.wordpressapi.com/elitecirclewordpresstheme.gif" alt="" width="400" height="300" /></a></p>
<p><a title="adsense ready theme" href="http://www.headsetoptions.org/2007/05/08/free-adsense-web-20-wordpress-theme/" target="_blank">Demo</a> | <a title="wp adsense theme" href="http://themes.wordpress.net/download.php?theme=3056" target="_blank">Download</a></p>
<h2><a href="http://pilkster.com/really-groovy-adsense-ready-wordpress-theme/" target="_blank">Adsense Bogpod WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6518" href="http://wordpressapi.com/?attachment_id=6518"><img class="alignnone size-full wp-image-6518" title="bogpod-themesforwordpress" src="http://images.wordpressapi.com/bogpod-themesforwordpress.jpg" alt="" width="350" height="214" /></a></p>
<p><a title="wp adsense theme" href="http://pilkster.com/really-groovy-adsense-ready-wordpress-theme/" target="_blank">Demo</a> | <a title="bogpod adsense theme" href="http://pilkster.com/wp-content/uploads/2006/08/adsense-boqpod.zip" target="_blank">Download</a></p>
<h2><a href="http://www.sizlopedia.com/tigopedia/" target="_blank">Tigopedia Reloaded WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6519" href="http://wordpressapi.com/?attachment_id=6519"><img class="alignnone size-full wp-image-6519" title="tigopedia-reloaded" src="http://images.wordpressapi.com/tigopedia-reloaded.jpg" alt="" width="470" height="350" /></a></p>
<p><a title="themes for wordpress" href="http://www.sizlopedia.com/tigopedia/" target="_blank">Demo</a> | <a title="wordpress themes" href="http://www.sizlopedia.com/wp-content/uploads/files/tigopedia-reloaded.zip" target="_blank">Download</a></p>
<h2><a href="http://www.carlocab.com/2007/03/13/adsense-ready-wordpress-theme/" target="_blank">Adsense Ready K2 Theme</a></h2>
<p><a rel="attachment wp-att-6520" href="http://wordpressapi.com/?attachment_id=6520"><img class="alignnone size-full wp-image-6520" title="k2-adsense-ready-wordpress-theme" src="http://images.wordpressapi.com/k2-adsense-ready-wordpress-theme.jpg" alt="" width="350" height="208" /></a></p>
<p><a title="K2 wordpress theme" href="http://www.carlocab.com/2007/03/13/adsense-ready-wordpress-theme/" target="_blank">Demo</a> | <a title="K2 adsense ready wordpress theme" href="http://www.carlocab.com/wp-content/uploads/k2adsense.zip" target="_blank">Download</a></p>
<h2><a href="http://rockinthemes.com/rockinnewspaper-red-for-adsense-3-column-free-wordpress-theme-released/" target="_blank">Rockin Newspaper Red WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6521" href="http://wordpressapi.com/?attachment_id=6521"><img class="alignnone size-full wp-image-6521" title="rockinred-wp-theme" src="http://images.wordpressapi.com/rockinred-wp-theme.jpg" alt="" width="400" height="300" /></a></p>
<p><a title="rockinred newspaper theme" href="http://rockinthemes.com/rockinnewspaper-red-for-adsense-3-column-free-wordpress-theme-released/" target="_blank">Demo</a> | <a title="Rockinred newspaper theme" href="http://themes.wordpress.net/download.php?theme=1795" target="_blank">Download</a></p>
<h2><a href="http://www.briangardner.com/themes/activate-wordpress-theme.htm" target="_blank">Activate WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6522" href="http://wordpressapi.com/?attachment_id=6522"><img class="alignnone size-full wp-image-6522" title="activate-wordpress-theme" src="http://images.wordpressapi.com/activate-wordpress-theme.gif" alt="" width="240" height="180" /></a></p>
<p><a title="activate theme" href="http://www.briangardner.com/themes/activate-wordpress-theme.htm" target="_blank">Demo</a> | <a title="download activate" href="http://themes.wordpress.net/download.php?theme=1217" target="_blank">Download</a></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/11/amazing-and-great-google-adsense-ready-free-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>List of free wordpress theme frameworks for wordpress theme developer</title>
		<link>http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/</link>
		<comments>http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 17:05:54 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[designers]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[free framework]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[theme developers]]></category>
		<category><![CDATA[theme framework]]></category>
		<category><![CDATA[wp framework]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6402</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/WordPress theme framework are very useful for creating the wordpress themes faster. WordPress framework are readymade wordpress themes with all the pages. Some of them are seo friendly also. So that will save your lot of time while creating the &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/<p>WordPress theme framework are very useful for creating the wordpress themes faster. WordPress framework are readymade wordpress themes with all the pages. Some of them are seo friendly also. So that will save your lot of time while creating the wordpress theme.</p>
<p>The best part of wordpress framework is, If you are not having any php programming knowledge then also you can easily develop the wordpress theme fast. You just need some CSS and HTML knowledge.</p>
<p>Here I created I list of free wordpress theme frameworks which are very useful for wordpress theme developers and designers.</p>
<p>&nbsp;</p>
<h2><a title="grid978" href="http://digcms.com/wordpress-themes/grid978/" target="_blank">Grid978</a></h2>
<div id="attachment_6632" class="wp-caption alignnone<a rel="attachment wp-att-6632" href="http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/grid978-free-wordpress-theme-by-wordpressapi-com/"><img class="size-full wp-image-6632" title="grid978-free-wordpress-theme-by-wordpressapi-com" src="http://images.wordpressapi.com/grid978-free-wordpress-theme-by-wordpressapi-com.png" alt="free wordpress theme Framework which is based on 978 grid system" width="342" height="314" /></a><p class="wp-caption-text">free wordpress theme Framework which is based on 978 grid system</p></div>
<h2 id="post-"><a title="the buffet framework" rel="bookmark" href="http://www.zy.sg/the-buffet-framework/" target="_blank">The Buffet Framework</a></h2>
<p><a rel="attachment wp-att-6403" href="http://wordpressapi.com/?attachment_id=6403"><img class="alignnone size-full wp-image-6403" title="the-buffet-framework" src="http://images.wordpressapi.com/the-buffet-framework.png" alt="" width="300" height="225" /></a></p>
<h2><strong id="blog-title"> </strong><strong id="blog-title"><a title="carrington" rel="home" href="http://carringtontheme.com/" target="_blank">Carrington</a></strong></h2>
<p><strong><a rel="attachment wp-att-6404" href="http://wordpressapi.com/?attachment_id=6404"><img class="alignnone size-full wp-image-6404" title="carrington-wordpress-theme" src="http://images.wordpressapi.com/carrington-wordpress-theme.jpg" alt="" width="386" height="220" /></a></strong></p>
<h2><a href="http://themeshaper.com/thematic/" target="_blank">Thematic</a></h2>
<p><a rel="attachment wp-att-6405" href="http://wordpressapi.com/?attachment_id=6405"><img class="alignnone size-full wp-image-6405" title="thematic-wordpress-theme-framework" src="http://images.wordpressapi.com/thematic-wordpress-theme-framework.png" alt="" width="400" height="227" /></a></p>
<h2><a href="http://themehybrid.com/archives/2008/11/hybrid-wordpress-theme-framework" target="_blank">Hybrid</a></h2>
<p><a rel="attachment wp-att-6406" href="http://wordpressapi.com/?attachment_id=6406"><img class="alignnone size-full wp-image-6406" title="hybrid-wordpress-theme-framework" src="http://images.wordpressapi.com/hybrid-wordpress-theme-framework.png" alt="" width="400" height="229" /></a></p>
<h2><a href="http://code.google.com/p/vanilla-theme/" target="_blank">Vanilla</a></h2>
<p><a rel="attachment wp-att-6407" href="http://wordpressapi.com/?attachment_id=6407"><img class="alignnone size-full wp-image-6407" title="vanilla-theme-wordpress" src="http://images.wordpressapi.com/vanilla-theme-wordpress.png" alt="" width="400" height="229" /></a></p>
<h2><a href="http://wpframework.com/" target="_blank">WP Framework </a></h2>
<p><a rel="attachment wp-att-6408" href="http://wordpressapi.com/?attachment_id=6408"><img class="alignnone size-full wp-image-6408" title="wp-framework-wordpress-theme-framework" src="http://images.wordpressapi.com/wp-framework-wordpress-theme-framework.png" alt="" width="400" height="211" /></a></p>
<h2><a href="http://www.plaintxt.org/themes/sandbox/" target="_blank">SandBox </a></h2>
<p><a rel="attachment wp-att-6409" href="http://wordpressapi.com/?attachment_id=6409"><img class="alignnone size-full wp-image-6409" title="sandbox-wordpress-theme-framework" src="http://images.wordpressapi.com/sandbox-wordpress-theme-framework.png" alt="" width="400" height="213" /></a></p>
<h2><a href="http://patdryburgh.net/junction/" target="_blank">Junction WordPress Child Theme</a></h2>
<p><a rel="attachment wp-att-6410" href="http://wordpressapi.com/?attachment_id=6410"><img class="alignnone size-full wp-image-6410" title="junction-wordpress-child-theme" src="http://images.wordpressapi.com/junction-wordpress-child-theme.jpg" alt="" width="439" height="334" /></a></p>
<h2><a href="http://themeshaper.com/acamas-theme-clarity-elegance-power/" target="_blank">Acamas</a></h2>
<p><a rel="attachment wp-att-6411" href="http://wordpressapi.com/?attachment_id=6411"><img class="alignnone size-full wp-image-6411" title="acamas-wordpress-child-theme" src="http://images.wordpressapi.com/acamas-wordpress-child-theme.png" alt="" width="400" height="220" /></a></p>
<h2><a href="http://elliotjaystocks.com/starkers/" target="_blank">Starkers Theme</a></h2>
<p><a rel="attachment wp-att-6412" href="http://wordpressapi.com/?attachment_id=6412"><img class="alignnone size-full wp-image-6412" title="starkers-wordpress-theme-framework" src="http://images.wordpressapi.com/starkers-wordpress-theme-framework.png" alt="" width="400" height="207" /></a></p>
<h2><a href="http://elastictheme.org/">Elastic</a></h2>
<p><a rel="attachment wp-att-6413" href="http://wordpressapi.com/?attachment_id=6413"><img class="alignnone size-full wp-image-6413" title="elastic-wordpress-theme-framework" src="http://images.wordpressapi.com/elastic-wordpress-theme-framework.png" alt="" width="400" height="184" /></a></p>
<h2><a href="http://wordpress.org/extend/themes/suffusion">Suffusion</a></h2>
<p><a rel="attachment wp-att-6414" href="http://wordpressapi.com/?attachment_id=6414"><img class="alignnone size-full wp-image-6414" title="theme-preview-wordpress-theme-framework" src="http://images.wordpressapi.com/theme-preview-wordpress-theme-framework.png" alt="" width="400" height="191" /></a></p>
<p>This list created by wordpressapi.com. If you are knowing about more free wordpress theme framework then please write to me and put a comment.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/" title="wordpress framework book">wordpress framework book</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/07/list-of-free-wordpress-theme-frameworks-for-wordpress-theme-developer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free magazine style wordpress themes of 2011</title>
		<link>http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/</link>
		<comments>http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 17:41:28 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[art magazine]]></category>
		<category><![CDATA[gold theme]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[magazine style]]></category>
		<category><![CDATA[magazine theme]]></category>
		<category><![CDATA[premium news]]></category>
		<category><![CDATA[web developers]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[wp themes]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6417</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/Magazine style wordpress themes are always favorite for all the web developers and clients. Magazine looks good and for readers also that give great experience. There are many free magazine style wordpress themes available for download. When I started working &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/<p>Magazine style wordpress themes are always favorite for all the web developers and clients. Magazine looks good and for readers also that give great experience. There are many free magazine style wordpress themes available for download. When I started working on wordpress first work I did for one US magazine. I migrated there 46 authors blog in wordpressMU. That time wordpress was not able to handle the multiblog system in wordpress.</p>
<p>Here I created the list of free magazine style wordpress themes of 2011.</p>
<h2><a href="http://bizzartic.com/bizzthemes/puremagazine/download/" target="_blank">Pure Magazine WordPress Theme</a></h2>
<p><a rel="attachment wp-att-6418" href="http://wordpressapi.com/?attachment_id=6418"><img class="alignnone size-full wp-image-6418" title="pure-magazine" src="http://images.wordpressapi.com/pure-magazine.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://bizzartic.com/bizzthemes/puremagazine/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://bizzartic.com/bizzthemes/puremagazine/download/" target="_blank">Download</a></p>
<h2><a href="http://web2feel.com/scarlett-theme/" target="_blank">Scarlett Theme</a></h2>
<p><a rel="attachment wp-att-6419" href="http://wordpressapi.com/?attachment_id=6419"><img class="alignnone size-full wp-image-6419" title="scarlette-theme" src="http://images.wordpressapi.com/scarlette-theme.jpg" alt="" width="485" height="339" /></a></p>
<p><a href="http://web2feel.com/scarlett/">Demo</a> | <a href="http://web2feel.com/downloads/scarlett.zip">Download</a></p>
<h2><a href="http://thethemefoundry.com/downloads-free/traction.1.02.zip" target="_blank">Traction</a></h2>
<p><a rel="attachment wp-att-6420" href="http://wordpressapi.com/?attachment_id=6420"><img class="alignnone size-full wp-image-6420" title="traction-theme" src="http://images.wordpressapi.com/traction-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://demo.thethemefoundry.com/traction/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://thethemefoundry.com/downloads-free/traction.1.02.zip" target="_blank">Download</a></p>
<h2><a href="http://www.jauhari.net/engine/wp-content/plugins/download-monitor/download.php?id=Hamasaki.zip" target="_blank">Hamasaki Theme</a></h2>
<p><a rel="attachment wp-att-6421" href="http://wordpressapi.com/?attachment_id=6421"><img class="alignnone size-full wp-image-6421" title="hamasaki-theme" src="http://images.wordpressapi.com/hamasaki-theme.jpg" alt="" width="485" height="334" /></a></p>
<p><a href="http://www.jauhari.net/engine/wp-content/plugins/download-monitor/download.php?id=Hamasaki.zip">Download</a> | <a href="http://demo.jauhari.net/?wptheme=Hamasaki">Demo</a></p>
<h2><a href="http://fthemes.com/download/?theme=snips" target="_blank">Snips</a></h2>
<p><a rel="attachment wp-att-6422" href="http://wordpressapi.com/?attachment_id=6422"><img class="alignnone size-full wp-image-6422" title="snips-theme" src="http://images.wordpressapi.com/snips-theme.jpg" alt="" width="600" height="300" /></a></p>
<h2><a href="../2011/01/27/wordpress-theme-wpapi/" target="_blank">WPAPI</a></h2>
<p><a rel="attachment wp-att-6423" href="http://wordpressapi.com/?attachment_id=6423"><img class="alignnone size-full wp-image-6423" title="wpapi-free-wordpress-theme" src="http://images.wordpressapi.com/wpapi-free-wordpress-theme1.jpg" alt="" width="498" height="356" /></a></p>
<p><a href="http://tolduntold.com/" target="_blank">Demo</a> | <a href="http://images.wordpressapi.com/wpapi.zip" target="_blank">Download</a></p>
<h2><a href="http://digcms.com/wordpress-themes/apticus/" target="_blank"><strong>Apticus</strong></a></h2>
<p><a rel="attachment wp-att-6424" href="http://wordpressapi.com/?attachment_id=6424"><img class="alignnone size-full wp-image-6424" title="apticus-thumb" src="http://images.wordpressapi.com/apticus-thumb.png" alt="" width="432" height="313" /></a></p>
<p><a href="http://wpdemo.digcms.com/?themedemo=apticus">Demo</a> | <a title="Apticus" href="http://digcms.com/wordpress-themes/apticus/">Download</a></p>
<h2><a href="http://digcms.com/wordpress-themes/ajooba/" target="_blank">Ajooba</a></h2>
<p><a rel="attachment wp-att-6425" href="http://wordpressapi.com/?attachment_id=6425"><img class="alignnone size-large wp-image-6425" title="ajooba-theme" src="http://images.wordpressapi.com/ajooba-theme-800x477.png" alt="" width="500" height="298" /></a></p>
<p><a href="http://wpdemo.digcms.com/?themedemo=ajooba">Demo</a> | <a title="Ajooba" href="http://digcms.com/wordpress-themes/ajooba/">Download</a></p>
<h2><a href="http://www.wpthemedesigner.com/wp-content/plugins/wp-download_monitor/download.php?id=2" target="_blank">Rebel Magazine Theme</a></h2>
<p><a rel="attachment wp-att-6426" href="http://wordpressapi.com/?attachment_id=6426"><img class="alignnone size-full wp-image-6426" title="rebel-magazine-theme" src="http://images.wordpressapi.com/rebel-magazine-theme.png" alt="" width="485" height="331" /></a></p>
<p><a href="http://www.wpthemedesigner.com/wp-content/plugins/wp-download_monitor/download.php?id=2">Download</a> | <a href="http://ythv.info/rebel/">Demo</a></p>
<h2><a href="http://gk.site5.com/t/322" target="_blank">AllTutorials</a></h2>
<p><a rel="attachment wp-att-6427" href="http://wordpressapi.com/?attachment_id=6427"><img class="alignnone size-full wp-image-6427" title="alltutorials-magazine-theme" src="http://images.wordpressapi.com/alltutorials-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://wordpress.site5.net/alltuts/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://gk.site5.com/t/322" target="_blank">Download</a></p>
<h2><a href="http://michaelhutagalung.com/download-manager.php?id=3" target="_blank">Arthemia Free Theme</a></h2>
<p><a rel="attachment wp-att-6428" href="http://wordpressapi.com/?attachment_id=6428"><img class="alignnone size-full wp-image-6428" title="artemia-free" src="http://images.wordpressapi.com/artemia-free.jpg" alt="" width="485" height="336" /></a></p>
<p><a href="http://michaelhutagalung.com/download-manager.php?id=3">Download</a> | <a href="http://michaelhutagalung.com/arthemia/">Demo</a></p>
<h2><a href="http://fearlessflyer.com/downloads/maximum.zip" target="_blank">maximum</a></h2>
<p><a rel="attachment wp-att-6429" href="http://wordpressapi.com/?attachment_id=6429"><img class="alignnone size-full wp-image-6429" title="magazine-theme" src="http://images.wordpressapi.com/magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://max.fearlessflyer.com/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://fearlessflyer.com/downloads/maximum.zip" target="_blank">Download</a></p>
<h2><a href="http://www.wpdesigner.com/wp-content/free-wordpress-themes/jello-wala-mello.zip" target="_blank">Jello Wala Mello Theme</a></h2>
<p><a rel="attachment wp-att-6430" href="http://wordpressapi.com/?attachment_id=6430"><img class="alignnone size-full wp-image-6430" title="jello-wala-mello-theme" src="http://images.wordpressapi.com/jello-wala-mello-theme.jpg" alt="" width="488" height="329" /></a></p>
<p><a href="http://www.wpdesigner.com/wp-content/free-wordpress-themes/jello-wala-mello.zip">Download</a> | <a href="http://www.wpdesigner.com/wp-content/files/2007/10/news-theme-single.png">Demo</a></p>
<h2><a href="http://bizzthemes.com/files/polarmedia.zip" target="_blank">Polar Media Magazine WordPres Theme</a></h2>
<p><a rel="attachment wp-att-6431" href="http://wordpressapi.com/?attachment_id=6431"><img class="alignnone size-full wp-image-6431" title="polar-media-magazine-theme" src="http://images.wordpressapi.com/polar-media-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://bizzthemes.com/preview/?theme=1676" target="_blank">Demo</a> |  <a rel="nofollow" href="http://bizzthemes.com/files/polarmedia.zip" target="_blank">Download</a></p>
<h2><a href="http://www.darrenhoyt.com/downloads/mimbo2.1.zip" target="_blank">Mimbo Theme</a></h2>
<p><a rel="attachment wp-att-6432" href="http://wordpressapi.com/?attachment_id=6432"><img class="alignnone size-full wp-image-6432" title="mimbo-theme" src="http://images.wordpressapi.com/mimbo-theme.png" alt="" width="467" height="320" /></a></p>
<p><a href="http://www.darrenhoyt.com/downloads/mimbo2.1.zip">Download</a> | <a href="http://www.darrenhoyt.com/demo/mimbo2/">Demo</a></p>
<h2><a href="http://toplez.textdriven.com/wp-content/plugins/download-monitor/download.php?id=1" target="_blank">Art Magazine</a></h2>
<p><a rel="attachment wp-att-6433" href="http://wordpressapi.com/?attachment_id=6433"><img class="alignnone size-full wp-image-6433" title="art-magazine-theme" src="http://images.wordpressapi.com/art-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://toplez.textdriven.com/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://toplez.textdriven.com/wp-content/plugins/download-monitor/download.php?id=1" target="_blank">Download</a></p>
<h2><a href="http://www.wp-magazine.se/wp-content/uploads/2008/05/conceditor-wp-gold.zip" target="_blank">WP Gold Theme</a></h2>
<p><a rel="attachment wp-att-6434" href="http://wordpressapi.com/?attachment_id=6434"><img class="alignnone size-full wp-image-6434" title="wp-gold-theme" src="http://images.wordpressapi.com/wp-gold-theme.jpg" alt="" width="485" height="336" /></a></p>
<p><a href="http://www.wp-magazine.se/wp-content/uploads/2008/05/conceditor-wp-gold.zip">Download</a> | <a href="http://demo.wp-magazine.se/">Demo</a></p>
<h2><a href="http://fearlessflyer.com/downloads/kubrick-on-crack.zip" target="_blank">Kubrick on Crack</a></h2>
<p><a rel="attachment wp-att-6435" href="http://wordpressapi.com/?attachment_id=6435"><img class="alignnone size-full wp-image-6435" title="kubrick-magazine-theme" src="http://images.wordpressapi.com/kubrick-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://koc.fearlessflyer.com/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://fearlessflyer.com/downloads/kubrick-on-crack.zip" target="_blank">Download</a></p>
<h2><a href="http://themasterplan.in/?dl=themasterplan_tma_v1.2.zip" target="_blank">Morning After Theme</a></h2>
<p><a rel="attachment wp-att-6436" href="http://wordpressapi.com/?attachment_id=6436"><img class="alignnone size-full wp-image-6436" title="morning-after-theme" src="http://images.wordpressapi.com/morning-after-theme.jpg" alt="" width="485" height="427" /></a></p>
<p><a href="http://themasterplan.in/?dl=themasterplan_tma_v1.2.zip">Download</a> | <a href="http://themasterplan.in/wp-content/uploads/2007/09/home_preview_themorningafte.png">Demo</a></p>
<h2><a href="http://fearlessflyer.com/downloads/clam-shell-psds.zip" target="_blank">Clam Shell</a></h2>
<p><a rel="attachment wp-att-6437" href="http://wordpressapi.com/?attachment_id=6437"><img class="alignnone size-full wp-image-6437" title="clam-shell-magazine-theme" src="http://images.wordpressapi.com/clam-shell-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://clam.fearlessflyer.com/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://fearlessflyer.com/downloads/clam-shell-psds.zip" target="_blank">Download</a></p>
<h2><a href="http://wpthemesplugin.com/download-manager.php?id=17" target="_blank">Forte Theme </a></h2>
<p><a rel="attachment wp-att-6438" href="http://wordpressapi.com/?attachment_id=6438"><img class="alignnone size-full wp-image-6438" title="forte" src="http://images.wordpressapi.com/forte.jpg" alt="" width="485" height="343" /></a></p>
<p><a href="http://wpthemesplugin.com/download-manager.php?id=17">Download</a> | <a href="http://themesdemo.wpthemesplugin.com/">Demo</a></p>
<h2><a href="http://www.towfiqi.com/template/wordpress/download/Incognito.zip" target="_blank">Incognito</a></h2>
<p><a rel="attachment wp-att-6439" href="http://wordpressapi.com/?attachment_id=6439"><img class="alignnone size-full wp-image-6439" title="incognito-magazine-theme" src="http://images.wordpressapi.com/incognito-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://www.towfiqi.com/template/wordpress/?wptheme=Incognito" target="_blank">Demo</a> |  <a rel="nofollow" href="http://www.towfiqi.com/template/wordpress/download/Incognito.zip" target="_blank">Download</a></p>
<h2><a href="http://wphacks.com/go/news.php" target="_blank">Premium News Theme</a></h2>
<p><a rel="attachment wp-att-6440" href="http://wordpressapi.com/?attachment_id=6440"><img class="alignnone size-full wp-image-6440" title="premium-news-theme" src="http://images.wordpressapi.com/premium-news-theme.jpg" alt="" width="500" height="340" /></a></p>
<p><a href="http://wphacks.com/go/news.php">Download</a> | <a href="http://wphacks.com/go/news.php">Demo</a></p>
<h2><a href="http://bizzthemes.com/files/berita_free.zip" target="_blank">Berita</a></h2>
<p><a rel="attachment wp-att-6441" href="http://wordpressapi.com/?attachment_id=6441"><img class="alignnone size-full wp-image-6441" title="berita-magazine-theme" src="http://images.wordpressapi.com/berita-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://bizzartic.com/bizzthemes/berita/" target="_blank">Demo</a> |  <a rel="nofollow" href="http://bizzthemes.com/files/berita_free.zip" target="_blank">Download</a></p>
<h2><a href="http://www.towfiqi.com/template/wordpress/download/Angelia.zip" target="_blank">Angelia</a></h2>
<p><a rel="attachment wp-att-6442" href="http://wordpressapi.com/?attachment_id=6442"><img class="alignnone size-full wp-image-6442" title="angelia-magazine-theme" src="http://images.wordpressapi.com/angelia-magazine-theme.jpg" alt="" width="600" height="300" /></a></p>
<p><a href="http://www.towfiqi.com/template/wordpress/?wptheme=Angelia" target="_blank">Demo</a> |  <a rel="nofollow" href="http://www.towfiqi.com/template/wordpress/download/Angelia.zip" target="_blank">Download</a></p>
<h2><a href="http://www.jauhari.net/engine/wp-content/plugins/download-monitor/download.php?id=Hamasaki.zip" target="_blank">Hamasaki Theme</a></h2>
<p><a rel="attachment wp-att-6443" href="http://wordpressapi.com/?attachment_id=6443"><img class="alignnone size-full wp-image-6443" title="hamasaki-theme" src="http://images.wordpressapi.com/hamasaki-theme1.jpg" alt="" width="485" height="334" /></a></p>
<p><a href="http://www.jauhari.net/engine/wp-content/plugins/download-monitor/download.php?id=Hamasaki.zip">Download</a> | <a href="http://demo.jauhari.net/?wptheme=Hamasaki">Demo</a></p>
<h2><a href="http://www.solostream.com/wordpress-themes/wordpress-theme-wp-clear-10/" target="_blank">WP Clear</a></h2>
<p><a rel="attachment wp-att-6444" href="http://wordpressapi.com/?attachment_id=6444"><img class="alignnone size-full wp-image-6444" title="wp-clear-theme" src="http://images.wordpressapi.com/wp-clear-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.solostream.com/wordpress-themes/wordpress-theme-wp-clear-10/">Download</a> | <a href="http://www.solostream.com/demo/wp-clear.html">Demo</a></p>
<h2><a href="http://bizzartic.com/bizzthemes/isotherm/download/" target="_blank">IsoTherm News</a></h2>
<p><a rel="attachment wp-att-6445" href="http://wordpressapi.com/?attachment_id=6445"><img class="alignnone size-full wp-image-6445" title="isotherm-news-theme" src="http://images.wordpressapi.com/isotherm-news-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://bizzartic.com/bizzthemes/isotherm/download/">Download</a> | <a href="http://bizzartic.com/bizzthemes/isotherm/">Demo</a></p>
<h2>Subtly Made</h2>
<p><a rel="attachment wp-att-6446" href="http://wordpressapi.com/?attachment_id=6446"><img class="alignnone size-full wp-image-6446" title="subtly-made" src="http://images.wordpressapi.com/subtly-made.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://every1knows.com/themes/subtlymade.zip">Download</a> | <a href="http://every1knows.com/themes/subtlymade/">Demo</a></p>
<h2><a href="http://newwpthemes.com/download/ProStart-246.zip" target="_blank">Pro Start</a></h2>
<p><a rel="attachment wp-att-6447" href="http://wordpressapi.com/?attachment_id=6447"><img class="alignnone size-full wp-image-6447" title="pro-start" src="http://images.wordpressapi.com/pro-start.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://newwpthemes.com/download/ProStart-246.zip">Download</a> | <a href="http://newwpthemes.com/demo/ProStart/">Demo</a></p>
<h2><a href="http://wordpress.site5.net/themes/webfolio_wp.zip" target="_blank">WebFolio</a></h2>
<p><a rel="attachment wp-att-6448" href="http://wordpressapi.com/?attachment_id=6448"><img class="alignnone size-full wp-image-6448" title="webfolio-theme" src="http://images.wordpressapi.com/webfolio-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://wordpress.site5.net/themes/webfolio_wp.zip">Download</a> | <a href="http://wordpress.site5.net/webfolio/">Demo</a></p>
<h2><a href="http://premiummod.com/freshmortar/" target="_blank">FreshMotar</a></h2>
<p><a rel="attachment wp-att-6449" href="http://wordpressapi.com/?attachment_id=6449"><img class="alignnone size-full wp-image-6449" title="freshmotar" src="http://images.wordpressapi.com/freshmotar.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://premiummod.com/freshmortar/">Download</a> | <a href="http://premiummod.com/demo/?themedemo=freshmortar">Demo</a></p>
<h2><a href="http://www.woothemes.com/2009/11/bueno/" target="_blank">Bueno</a></h2>
<p><a rel="attachment wp-att-6450" href="http://wordpressapi.com/?attachment_id=6450"><img class="alignnone size-full wp-image-6450" title="bueno-theme" src="http://images.wordpressapi.com/bueno-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.woothemes.com/2009/11/bueno/">Download</a> | <a href="http://www.woothemes.com/demo/bueno/">Demo</a></p>
<h2><a href="http://www.wpthemedesigner.com/wp-content/plugins/download-monitor/download.php?id=Free+PixDesign+Silver" target="_blank">PixDesign</a></h2>
<p><a rel="attachment wp-att-6451" href="http://wordpressapi.com/?attachment_id=6451"><img class="alignnone size-full wp-image-6451" title="pixdesign-theme" src="http://images.wordpressapi.com/pixdesign-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.wpthemedesigner.com/wp-content/plugins/download-monitor/download.php?id=Free+PixDesign+Silver">Download</a> | <a href="http://www.wpthemedesigner.com/demo/index.php?wptheme=PixDesign-Silver">Demo</a></p>
<h2><a href="http://www.wpthemedesigner.com/wp-content/plugins/download-monitor/download.php?id=Free+Organic+Moss" target="_blank">OrganicMoss Theme</a></h2>
<p><a rel="attachment wp-att-6452" href="http://wordpressapi.com/?attachment_id=6452"><img class="alignnone size-full wp-image-6452" title="organicmoss-theme" src="http://images.wordpressapi.com/organicmoss-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.wpthemedesigner.com/wp-content/plugins/download-monitor/download.php?id=Free+Organic+Moss">Download</a> | <a href="http://www.wpthemedesigner.com/demo/index.php?wptheme=Organic+Moss">Demo</a></p>
<h2><a href="http://www.wpskinner.com/download/moi-magazine.zip" target="_blank">Moi Magazine</a></h2>
<p><a rel="attachment wp-att-6453" href="http://wordpressapi.com/?attachment_id=6453"><img class="alignnone size-full wp-image-6453" title="moi-magazine" src="http://images.wordpressapi.com/moi-magazine.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.wpskinner.com/download/moi-magazine.zip">Download</a> | <a href="http://wpcodex.com/demo/?themedemo=moi-magazine">Demo</a></p>
<h2><a href="http://www.fakeblog.de/wp-content/downloads/overstand_en.zip" target="_blank">FakeBlog</a></h2>
<p><a rel="attachment wp-att-6454" href="http://wordpressapi.com/?attachment_id=6454"><img class="alignnone size-full wp-image-6454" title="fakeblog-theme" src="http://images.wordpressapi.com/fakeblog-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.fakeblog.de/wp-content/downloads/overstand_en.zip">Download</a> | <a href="http://www.fakeblog.de/">Demo</a></p>
<h2><a href="http://media2.smashingmagazine.com/images/magazeen-wordpress-theme/magazeen-wordpress-theme.zip" target="_blank">Magazeen</a></h2>
<p><a rel="attachment wp-att-6455" href="http://wordpressapi.com/?attachment_id=6455"><img class="alignnone size-full wp-image-6455" title="magazeen-theme" src="http://images.wordpressapi.com/magazeen-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://media2.smashingmagazine.com/images/magazeen-wordpress-theme/magazeen-wordpress-theme.zip">Download</a> | <a href="http://demo.wefunction.com/?wptheme=Magazeen">Demo</a></p>
<h2><a href="http://newwpthemes.com/download/elegant-news-358.zip" target="_blank">Elegant News</a></h2>
<p><a rel="attachment wp-att-6456" href="http://wordpressapi.com/?attachment_id=6456"><img class="alignnone size-full wp-image-6456" title="elegant-news" src="http://images.wordpressapi.com/elegant-news.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://newwpthemes.com/download/elegant-news-358.zip">Download</a> | <a href="http://newwpthemes.com/demo/ElegantNews/">Demo</a></p>
<h2><a href="http://www.blogohblog.com/wordpress-theme-urbane/" target="_blank">Urbane</a></h2>
<p><a rel="attachment wp-att-6457" href="http://wordpressapi.com/?attachment_id=6457"><img class="alignnone size-full wp-image-6457" title="urbane-theme" src="http://images.wordpressapi.com/urbane-theme.jpg" alt="" width="570" height="328" /></a></p>
<p><a href="http://www.blogohblog.com/wordpress-theme-urbane/">Download</a> | <a href="http://demo.blogohblog.net/">Demo</a></p>
<p>I hope you will like this list. This post written by wordpressapi.com. If you found any more magazine style free wordpress themes then please put your comments or you can send email to me on wordpressapi@gmail.com.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="create magazine style in wordpress php code">create magazine style in wordpress php code</a></li><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="download bulldog theme wordpress">download bulldog theme wordpress</a></li><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="download linux style wordpress themes">download linux style wordpress themes</a></li><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="download wordpress Themes API">download wordpress Themes API</a></li><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="free magazine wordpress themes">free magazine wordpress themes</a></li><li><a href="http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/" title="pure magazine wordpress with api key">pure magazine wordpress with api key</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/05/free-magazine-style-wordpress-themes-of-2011/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>best free wordpress themes for personal bloggers</title>
		<link>http://wordpressapi.com/2011/04/04/best-free-wordpress-themes-for-personal-bloggers/</link>
		<comments>http://wordpressapi.com/2011/04/04/best-free-wordpress-themes-for-personal-bloggers/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 17:26:05 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging theme]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[Free Wordpress Themes]]></category>
		<category><![CDATA[personal blog]]></category>
		<category><![CDATA[personal blog theme]]></category>
		<category><![CDATA[personal views]]></category>
		<category><![CDATA[wp theme]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6459</guid>
		<description><![CDATA[http://wordpressapi.com/2011/04/04/best-free-wordpress-themes-for-personal-bloggers/In last two years blogging is became very famous. WordPress is used by many of bloggers for putting the personal views. Here I created the list of free wordpress themes which is really great for personal blogging. Spectacular Demo &#124; &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/04/04/best-free-wordpress-themes-for-personal-bloggers/<p>In last two years blogging is became very famous. WordPress is used by many of bloggers for putting the personal views.</p>
<p>Here I created the list of free wordpress themes which is really great for personal blogging.</p>
<h2><a href="http://www.smashingmagazine.com/2011/01/10/free-html-4-01-html5-wordpress-theme-spectacular/">Spectacular</a></h2>
<p><a rel="attachment wp-att-6460" href="http://wordpressapi.com/?attachment_id=6460"><img class="alignnone size-full wp-image-6460" title="spectacular-theme" src="http://images.wordpressapi.com/spectacular-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://dev.rockatee.com/wp/">Demo</a> | <a href="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/uploader/images/spectacular/spectacular.zip">Download</a></p>
<h2><a href="http://wordpress.site5.net/journalcrunch/doc/">Journal Crunch</a></h2>
<p><a rel="attachment wp-att-6461" href="http://wordpressapi.com/?attachment_id=6461"><img class="alignnone size-full wp-image-6461" title="journalcrunch-theme" src="http://images.wordpressapi.com/journalcrunch-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://wordpress.site5.net/journalcrunch/" target="_blank">Demo</a> | <a href="http://gk.site5.com/t/334" target="_blank">Download</a></p>
<h2><a href="http://wordpress.site5.net/simplo/doc/" target="_blank">Simplo</a></h2>
<p><a rel="attachment wp-att-6462" href="http://wordpressapi.com/?attachment_id=6462"><img class="alignnone size-full wp-image-6462" title="simplo-theme" src="http://images.wordpressapi.com/simplo-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://wordpress.site5.net/simplo/" target="_blank">Demo</a> | <a href="http://gk.site5.com/t/340" target="_blank">Download</a></p>
<h2><a href="http://designdisease.com/blog/dailynote-theme-released/" target="_blank">Daily Notes</a></h2>
<p><a rel="attachment wp-att-6463" href="http://wordpressapi.com/?attachment_id=6463"><img class="alignnone size-full wp-image-6463" title="dailynote" src="http://images.wordpressapi.com/dailynote.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://designdisease.com/preview/dailynotes" target="_blank">Demo</a> | <a href="http://designdisease.com/download-manager.php?id=22" target="_blank">Download</a></p>
<h2><a href="http://www.kreativethemes.com/furvious/" target="_blank">Furvious</a></h2>
<p><a rel="attachment wp-att-6464" href="http://wordpressapi.com/?attachment_id=6464"><img class="alignnone size-full wp-image-6464" title="furvious-theme" src="http://images.wordpressapi.com/furvious-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://demo.kreativethemes.com/furvious/" target="_blank">Demo</a> | <a href="http://www.kreativethemes.com/free/free-furvious.zip" target="_blank">Download</a></p>
<h2><a href="http://www.woothemes.com/2009/07/mainstream/" target="_blank">Mainstream</a></h2>
<p><a rel="attachment wp-att-6465" href="http://wordpressapi.com/?attachment_id=6465"><img class="alignnone size-full wp-image-6465" title="mainstream-theme" src="http://images.wordpressapi.com/mainstream-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://demo.woothemes.com/?name=mainstream" target="_blank">Demo</a> | <a href="http://www.woothemes.com/free-themes/Mainstream" target="_blank">Download</a></p>
<h2><a href="http://themify.me/themes/koi" target="_blank">Koi</a></h2>
<p><a rel="attachment wp-att-6466" href="http://wordpressapi.com/?attachment_id=6466"><img class="alignnone size-full wp-image-6466" title="koi-theme" src="http://images.wordpressapi.com/koi-theme.png" alt="" width="603" height="408" /></a></p>
<p><a href="http://themify.me/demo/#theme=koi" target="_blank">Demo</a> | <a href="http://themify.me/download/1" target="_blank">Download</a></p>
<h2><a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/" target="_blank">Notepad Chaos</a></h2>
<p><a rel="attachment wp-att-6467" href="http://wordpressapi.com/?attachment_id=6467"><img class="alignnone size-full wp-image-6467" title="notepad-chaos-theme" src="http://images.wordpressapi.com/notepad-chaos-theme.jpg" alt="" width="500" height="250" /></a></p>
<p><a href="http://88.198.60.17/images/notepad-wordpress-theme/chaos.jpg" target="_blank">Demo</a> | <a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/" target="_blank">Download</a></p>
<h2><a href="http://freethemelayouts.com/showcase/personal-wordpress-themes/deskspace-theme/" target="_blank">Deskspace</a></h2>
<p><a rel="attachment wp-att-6468" href="http://wordpressapi.com/?attachment_id=6468"><img class="alignnone size-full wp-image-6468" title="deskspace-theme" src="http://images.wordpressapi.com/deskspace-theme.jpg" alt="" width="500" height="250" /></a></p>
<p><a href="http://freethemelayouts.com/blog/index.php?wptheme=DeskSpace" target="_blank">Demo</a> | <a href="http://freethemelayouts.com/showcase/personal-wordpress-themes/deskspace-theme/" target="_blank">Download</a></p>
<h2><a href="http://freethemelayouts.com/showcase/creativeart-theme/" target="_blank">CreativeArt</a></h2>
<p><a rel="attachment wp-att-6469" href="http://wordpressapi.com/?attachment_id=6469"><img class="alignnone size-full wp-image-6469" title="creative-art-theme" src="http://images.wordpressapi.com/creative-art-theme.jpg" alt="" width="500" height="250" /></a></p>
<p><a href="http://freethemelayouts.com/showcase/creativeart-theme/" target="_blank">Demo</a> | <a href="http://freethemelayouts.com/showcase/creativeart-theme/" target="_blank">Download</a></p>
<h2><a href="http://freethemelayouts.com/showcase/mysticgrunge-theme/" target="_blank">MysticGrunge</a></h2>
<p><a rel="attachment wp-att-6470" href="http://wordpressapi.com/?attachment_id=6470"><img class="alignnone size-full wp-image-6470" title="mysticgrunge-theme" src="http://images.wordpressapi.com/mysticgrunge-theme.jpg" alt="" width="500" height="250" /></a></p>
<h2><a href="http://freethemelayouts.com/showcase/color-paper-theme/" target="_blank">Color Paper</a></h2>
<p><a rel="attachment wp-att-6471" href="http://wordpressapi.com/?attachment_id=6471"><img class="alignnone size-full wp-image-6471" title="color-paper-theme" src="http://images.wordpressapi.com/color-paper-theme.jpg" alt="" width="500" height="250" /></a></p>
<p><a href="http://freethemelayouts.com/blog/index.php?wptheme=colorpaper" target="_blank">Demo</a> | <a href="http://freethemelayouts.com/showcase/color-paper-theme/" target="_blank">Download</a></p>
<h2><a href="http://www.geekwithlaptop.com/projects/desk-mess-wordpress-theme/" target="_blank">Desk Mess</a></h2>
<p><a rel="attachment wp-att-6472" href="http://wordpressapi.com/?attachment_id=6472"><img class="alignnone size-full wp-image-6472" title="desk-mess-theme" src="http://images.wordpressapi.com/desk-mess-theme.jpg" alt="" width="490" height="250" /></a></p>
<p><a href="http://www.geekwithlaptop.com/projects/desk-mess-wordpress-theme/" target="_blank">Demo</a> | <a href="http://www.geekwithlaptop.com/projects/desk-mess-wordpress-theme/" target="_blank">Download</a></p>
<p>This blogger theme list is created by wordpessapi.com. I hope you will like this list. If you want to suggest more personal blogging themes then please put your comments or you can send email to us using contact us page. In wordpressapi.com you will find more themes to your project.</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/04/04/best-free-wordpress-themes-for-personal-bloggers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: wordpressapi.com @ 2012-05-23 18:56:33 by W3 Total Cache -->
