<?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>design blog and design Inspiration &#187; Wordpress</title>
	<atom:link href="http://www.ezuca.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ezuca.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 07:17:11 +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>WordPress Tip: Stop Autop and WpTexturize from Messing with Your HTML Code</title>
		<link>http://www.ezuca.com/wordpress-tip-stop-autop-wptexturize-changing-messing-html-code/</link>
		<comments>http://www.ezuca.com/wordpress-tip-stop-autop-wptexturize-changing-messing-html-code/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:36:22 +0000</pubDate>
		<dc:creator>ezuca</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hack]]></category>

		<guid isPermaLink="false">http://www.ezuca.com/?p=1724</guid>
		<description><![CDATA[Generally, one of the annoying features of the popular blogging platform WordPress, is its automatic correction and presumed way of editing the HTML code you insert in creating your posts. For instance if you place a &#60;br&#62; tag in your HTML code, WordPress will then try to replace it with the &#60;p&#62; tag. Worse is [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.ezuca.com/content//2009/11/wordpress-tip-autop-wptexturize.jpg" alt="Wordpress Tip/Hack"/> 

Generally, one of the annoying features of the popular blogging platform WordPress,  is its <b>automatic correction</b> and <b>presumed way of editing the HTML code</b> you insert in creating your posts. For instance if you place a &lt;br&gt; tag in your HTML code, WordPress will then try to replace it with the &lt;p&gt; tag. Worse is that it sometimes add the closing tag, &lt;/p&gt;, in the end of already closed tags with no substantial reasons when in fact you have already written the code correctly.

The WordPress functions <b>wpautop</b> (which handles the automatic insertion of the paragraph or &lt;p&gt; tags) and the <b>wptexturize</b> (adds curly quotes and sometimes changes symbols in order to make it look “prettier” which later causes your output to behave unsually). If you are a person who often checks your site with the W3C's Markup and CSS standards, then those two functions will make your way a little bit harder in complying with those standards. So what can you do to avoid those unusual effects of the functions? One solution perhaps is to disable the two functions. This could be a harsh way but this will also yield better benefits on your part. The solution is here.

<p>Open your theme's function.php file, and simply insert the follwing code between (or inside) <b>&lt;?php</b> and <b>?&gt;</b>:</p>

<pre class="brush: xml; title: ; notranslate">//disable auto p
remove_filter ('the_content', 'wpautop');

//disable wptexturize
remove_filter('the_content', 'wptexturize');</pre>

<p>That's it! I hope you find this helpful.</p>]]></content:encoded>
			<wfw:commentRss>http://www.ezuca.com/wordpress-tip-stop-autop-wptexturize-changing-messing-html-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Easy Way to Separate Comments and Trackbacks (or Pingbacks)</title>
		<link>http://www.ezuca.com/easy-way-separate-comments-trackbacks-pingbacks/</link>
		<comments>http://www.ezuca.com/easy-way-separate-comments-trackbacks-pingbacks/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 04:08:29 +0000</pubDate>
		<dc:creator>ezuca</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hack]]></category>

		<guid isPermaLink="false">http://www.ezuca.com/?p=1412</guid>
		<description><![CDATA[Trackbacks are one way of telling the web authors that another site links back to one of their articles, posts and the like. This helps the authors know who is linking to their articles. WordPress happens to be one of the blogging platforms that support automatic pingbacks or trackbacks. So, why do you have to [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.ezuca.com/content//2009/10/separate-comments-trackbacks-wordpress.jpg" alt="Social Networking Icons"/>

Trackbacks are one way of telling the web authors that another site links back to one of their articles,  posts and the like. This helps the authors know who is linking to their articles. WordPress happens to be one of the blogging platforms that support automatic pingbacks or trackbacks.<span id="more-1412"></span>

So, why do you have to separate trackbacks from the comments then? One reason is to make things look more tidy. Isn't it nicer to see all the apples in one row and the oranges in the other than see them mixed altogether on a fruit stand? Besides the comments are the thoughts shared by real people, and you, the one reading them, just don't want to be interrupted with those machine-generated linkbacks in between.

Here's now a simple way of segregating comments and trackbacks. In this hack we will be editing <span style="color: #669900;"><em>comments.php</em></span>. And before anything else, you should always create a backup copy of the file or simply just the code.

<h4>Step 1</h4>
<p>Now open <span style="color: #669900;"><em>comments.php</em></span>, and look for the following code:</p>

<pre class="brush: xml; title: ; notranslate">&lt;?php foreach ($comments as $comment) : ?&gt;</pre>

<b>After</b> that, paste this:

<pre class="brush: xml; title: ; notranslate">&lt;?php $comment_type = get_comment_type(); ?&gt; 
&lt;?php if($comment_type == 'comment') { ?&gt;</pre>

<br/>EXPLANATION:

<p>In the code we added, <b>line 1</b> means that we will get the type (<em>comment</em> or <em>trackback</em>) of all the comments it parses for the specific post. Then <b>line 2</b> will filter and show only the ones with the type <em>comment</em>. Thus your comments will be posted as normal but without the trackbacks or pingbacks along.</p>


<h4>Step 2</h4>
Search for:

<pre class="brush: xml; title: ; notranslate">&lt;?php endforeach; /* end for each comment */ ?&gt;</pre>

Then <b>before</b> the above code, add this:

<pre class="brush: xml; title: ; notranslate">&lt;?php } else { $trackback = true; } /* End of is_comment statement */ ?&gt;</pre>

<br/>EXPLANATION:

<p>The appended line of code means that if it has filtered comments with type <em>trackback</em>, it shall set the variable <em>$trackback</em> to true, but nothing of those trackbacks will appear still. Don't worry we really didn't discard those precious trackbacks completely because we've got another way of handling them which we will do in the succeeding step.</p>


<h4>Step 3</h4>
Look for this code:

<pre class="brush: xml; title: ; notranslate">&lt;?php else : // this is displayed if there are no comments so far ?&gt;</pre>

<b>Before</b> it, paste the code below:

<pre class="brush: xml; title: ; notranslate">&lt;?php if ($trackback == true) { ?&gt;
  &lt;h3&gt;Trackbacks&lt;/h3&gt;
  &lt;ol&gt;
  &lt;?php foreach ($comments as $comment) : ?&gt;
  &lt;?php $comment_type = get_comment_type(); ?&gt;
  &lt;?php if($comment_type != 'comment') { ?&gt;
  &lt;li&gt;&lt;?php comment_author_link() ?&gt;&lt;/li&gt;
  &lt;?php } ?&gt;
  &lt;?php endforeach; ?&gt;
  &lt;/ol&gt;
&lt;?php } ?&gt;</pre>

<br/>EXPLANATION:

<p>In <b>line 1</b>, if there are trackbacks found then it shall execute the inside code. "Trackbacks" in <b>line 2</b> will be the title header for the trackbacks or pingbacks section. As you can see, "Trackbacks" will only appear if there are any trackbacks or pingbacks available. Then the rest of the code is the default way of rendering trackbacks which is just similar to comments (like having its author, author's link, etc).</p>

<p>You're done! Try refreshing your blog and see if it works. This hack would only be useful if you really are using trackbacks or pingbacks with your posts. So have fun.</p>]]></content:encoded>
			<wfw:commentRss>http://www.ezuca.com/easy-way-separate-comments-trackbacks-pingbacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>70 FREE and Most Downloaded WordPress Themes</title>
		<link>http://www.ezuca.com/70-free-most-downloaded-wordpress-themes/</link>
		<comments>http://www.ezuca.com/70-free-most-downloaded-wordpress-themes/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 07:26:32 +0000</pubDate>
		<dc:creator>ezuca</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.ezuca.com/?p=590</guid>
		<description><![CDATA[No doubt that WordPress is the leading blogging platform online these days. WordPress can be run on both free and hosted version. Its practical blogging functionalities and great usability such as being user-friendly make WordPress the nicest blogging platform a user can have. This unparalleled publishing platform is free for all. Thus anyone can definitely [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.ezuca.com/content//2009/08/wordpress-themes.jpg" alt="Wordpress Themes"/>

No doubt that WordPress is the leading blogging platform online these days.  WordPress can be run on both free and hosted version. Its practical blogging functionalities and great usability such as being user-friendly make WordPress the nicest blogging platform a user can have. This unparalleled publishing platform is free for all. Thus anyone can definitely enjoy the use of this platform.<span id="more-590"></span>

If you have just newly created your blog (or your first blog) with WordPress, for sure you are so eager to change or perhaps improve its look and feel. Maybe you have already found a lot of WordPress templates in the net.  Some could be free but you would notice that the ones which are really beautiful are for sale─and cost big bucks. Don’t worry because there are also pretty and nice templates that are free. I give you now the most popular WordPress themes being used by most bloggers, maybe because of their gorgeous layouts and great simplicity.
<p></p>
<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inove" >iNove</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/inove.1.4.6.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inove" ><img src="http://www.ezuca.com/content//2009/08/inove.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/pixel" >Pixel</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/pixel.1.9.7.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/pixel" ><img src="http://www.ezuca.com/content//2009/08/pixel.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/atahualpa" >Atahualpa</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/atahualpa.3.4.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/atahualpa" ><img src="http://www.ezuca.com/content//2009/08/atahualpa.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/lightword" >LightWord</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/lightword.1.8.7.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/lightword" ><img src="http://www.ezuca.com/content//2009/08/lightword.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/cordobo-green-park-2" >Cordobo Green Park 2</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/cordobo-green-park-2.0.9.501.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/cordobo-green-park-2" ><img src="http://www.ezuca.com/content//2009/08/cordobo-green-park-2.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/fusion" >Fusion</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/fusion.3.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/fusion" ><img src="http://www.ezuca.com/content//2009/08/fusion.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/pyrmont-v2" >Pyrmont V2</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/pyrmont-v2.2.0.6.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/pyrmont-v2" ><img src="http://www.ezuca.com/content//2009/08/pyrmont-v2.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/arclite" >Arclite</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/arclite.1.5.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/arclite" ><img src="http://www.ezuca.com/content//2009/08/arclite.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/arras-theme" >Arras Theme</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/arras-theme.1.3.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/arras-theme" ><img src="http://www.ezuca.com/content//2009/08/arras-theme.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/carrington-blog" >Carrington Blog</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/carrington-blog.2.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/carrington-blog" ><img src="http://www.ezuca.com/content//2009/08/carrington-blog.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/thematic" >Thematic</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/thematic.0.9.5.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/thematic" ><img src="http://www.ezuca.com/content//2009/08/thematic.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/shine" >Shine</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/shine.1.6.0.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/shine" ><img src="http://www.ezuca.com/content//2009/08/shine.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/monochrome" >monochrome</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/monochrome.1.6.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/monochrome" ><img src="http://www.ezuca.com/content//2009/08/monochrome.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dfblog" >dfBlog</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/dfblog.1.1.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dfblog" ><img src="http://www.ezuca.com/content//2009/08/dfblog.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/iblog2" >iBlog2</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/iblog2.2.6.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/iblog2" ><img src="http://www.ezuca.com/content//2009/08/iblog2.jpg" alt="Wordpress Theme" /></a>


<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/oriental" >oriental</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/oriental.1.2.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/oriental" ><img src="http://www.ezuca.com/content//2009/08/oriental.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/ahimsa" >Ahimsa</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/ahimsa.2.2.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/ahimsa" ><img src="http://www.ezuca.com/content//2009/08/ahimsa.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/autofocus" >AutoFocus</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/autofocus.1.0.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/autofocus" ><img src="http://www.ezuca.com/content//2009/08/autofocus.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/p2" >P2</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/p2.1.0.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/p2" ><img src="http://www.ezuca.com/content//2009/08/p2.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/sliding-door" >Sliding Door</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/sliding-door.1.7.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/sliding-door" ><img src="http://www.ezuca.com/content//2009/08/sliding-door.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/eos" >Eos</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/eos.1.2.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/eos" ><img src="http://www.ezuca.com/content//2009/08/eos.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hybrid" >Hybrid</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/hybrid.0.6.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hybrid" ><img src="http://www.ezuca.com/content//2009/08/hybrid.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/elegant-grunge" >Elegant Grunge</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/elegant-grunge.1.0.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/elegant-grunge" ><img src="http://www.ezuca.com/content//2009/08/elegant-grunge.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/magazine-basic" >Magazine Basic</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/magazine-basic.2.4.11.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/magazine-basic" ><img src="http://www.ezuca.com/content//2009/08/magazine-basic.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dark-wood" >Dark Wood</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/dark-wood.1.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dark-wood" ><img src="http://www.ezuca.com/content//2009/08/dark-wood.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/f2" >F2</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/f2.1.0.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/f2" ><img src="http://www.ezuca.com/content//2009/08/f2.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/panorama" >Panorama</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/panorama.1.9.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/panorama" ><img src="http://www.ezuca.com/content//2009/08/panorama.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/adstyle" >AdStyle</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/adstyle.1.3.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/adstyle" ><img src="http://www.ezuca.com/content//2009/08/adstyle.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/vina" >Vina</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/vina.1.3.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/vina" ><img src="http://www.ezuca.com/content//2009/08/vina.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simplex" >simpleX</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/simplex.1.3.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simplex" ><img src="http://www.ezuca.com/content//2009/08/simplex.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/in-berlin" >in-berlin</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/in-berlin.0.8.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/in-berlin" ><img src="http://www.ezuca.com/content//2009/08/in-berlin.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/snowblind" >Snowblind</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/snowblind.1.0.9.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/snowblind" ><img src="http://www.ezuca.com/content//2009/08/snowblind.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/patagonia" >Patagonia</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/patagonia.1.5.7.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/patagonia" ><img src="http://www.ezuca.com/content//2009/08/patagonia.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/f8-lite" >F8 Lite</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/f8-lite.1.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/f8-lite" ><img src="http://www.ezuca.com/content//2009/08/f8-lite.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/swift" >Swift</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/swift.2.0.6.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/swift" ><img src="http://www.ezuca.com/content//2009/08/swift.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/suffusion" >Suffusion</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/suffusion.2.0.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/suffusion" ><img src="http://www.ezuca.com/content//2009/08/suffusion.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dovetail" >Dovetail</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/dovetail.2.0.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dovetail" ><img src="http://www.ezuca.com/content//2009/08/dovetail.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/vigilance" >Vigilance</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/vigilance.1.34.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/vigilance" ><img src="http://www.ezuca.com/content//2009/08/vigilance.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/desk-mess-mirrored" >Desk Mess Mirrored</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/desk-mess-mirrored.1.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/desk-mess-mirrored" ><img src="http://www.ezuca.com/content//2009/08/desk-mess-mirrored.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/blue-black" >Blue Black</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/blue-black.2.7.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/blue-black" ><img src="http://www.ezuca.com/content//2009/08/blue-black.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/amazing-grace" >Amazing Grace</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/amazing-grace.3.0.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/amazing-grace" ><img src="http://www.ezuca.com/content//2009/08/amazing-grace.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dkret3" >dkret3</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/dkret3.3.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/dkret3" ><img src="http://www.ezuca.com/content//2009/08/dkret3.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/cleanr" >Cleanr</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/cleanr.0.1.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/cleanr" ><img src="http://www.ezuca.com/content//2009/08/cleanr.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/myblog" >MyBlog</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/myblog.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/myblog" ><img src="http://www.ezuca.com/content//2009/08/myblog.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/heatmap-adsense-theme" >HeatMap Adsense Theme</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/heatmap-adsense-theme.2.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/heatmap-adsense-theme" ><img src="http://www.ezuca.com/content//2009/08/heatmap-adsense-theme.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/modern-vintage" >Modern-Vintage</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/modern-vintage.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/modern-vintage" ><img src="http://www.ezuca.com/content//2009/08/modern-vintage.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/js-o4w" >Js O4w</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/js-o4w.1.0.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/js-o4w" ><img src="http://www.ezuca.com/content//2009/08/js-o4w.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simple-white" >Simple White</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/simple-white.1.0.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simple-white" ><img src="http://www.ezuca.com/content//2009/08/simple-white.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/threattocreativity" >ThreatToCreativity</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/threattocreativity.2.0.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/threattocreativity" ><img src="http://www.ezuca.com/content//2009/08/threattocreativity.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/darklight" >DarkLight</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/darklight.1.0.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/darklight" ><img src="http://www.ezuca.com/content//2009/08/darklight.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/magicblue" >magicblue</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/magicblue.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/magicblue" ><img src="http://www.ezuca.com/content//2009/08/magicblue.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hope" >HoPE</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/hope.2.5.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hope" ><img src="http://www.ezuca.com/content//2009/08/hope.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inanis-glass" >Inanis Glass</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/inanis-glass.1.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inanis-glass" ><img src="http://www.ezuca.com/content//2009/08/inanis-glass.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/the-last-fall" >The Last Fall</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/the-last-fall.1.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/the-last-fall" ><img src="http://www.ezuca.com/content//2009/08/the-last-fall.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/feed-me-seymour" >Feed Me, Seymour</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/feed-me-seymour.1.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/feed-me-seymour" ><img src="http://www.ezuca.com/content//2009/08/feed-me-seymour.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/redtime" >RedTime</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/redtime.1.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/redtime" ><img src="http://www.ezuca.com/content//2009/08/redtime.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inferno-mf" >Inferno-mf</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/inferno-mf.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/inferno-mf" ><img src="http://www.ezuca.com/content//2009/08/inferno-mf.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/that-music-theme" >THAT Music Theme</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/that-music-theme.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/that-music-theme" ><img src="http://www.ezuca.com/content//2009/08/that-music-theme.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/prosumer" >Prosumer</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/prosumer.1.9.1.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/prosumer" ><img src="http://www.ezuca.com/content//2009/08/prosumer.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/skulls" >Skulls</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/skulls.0.5.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/skulls" ><img src="http://www.ezuca.com/content//2009/08/skulls.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/swirly-glow-thingys" >Swirly Glow Thingys</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/swirly-glow-thingys.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/swirly-glow-thingys" ><img src="http://www.ezuca.com/content//2009/08/swirly-glow-thingys.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/seasons-theme-autumn" >Seasons Theme (Autumn)</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/seasons-theme-autumn.2.8.1.2.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/seasons-theme-autumn" ><img src="http://www.ezuca.com/content//2009/08/seasons-theme-autumn.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/twordder" >Twordder</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/twordder.1.4.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/twordder" ><img src="http://www.ezuca.com/content//2009/08/twordder.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/machine" >Machine</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/machine.1.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/machine" ><img src="http://www.ezuca.com/content//2009/08/machine.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/sunset-theme" >Sunset Theme</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/sunset-theme.1.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/sunset-theme" ><img src="http://www.ezuca.com/content//2009/08/sunset-theme.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/clockwork" >Clockwork</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/clockwork.1.05.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/clockwork" ><img src="http://www.ezuca.com/content//2009/08/clockwork.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/crafty-cart" >Crafty Cart</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/crafty-cart.1.0.6.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/crafty-cart" ><img src="http://www.ezuca.com/content//2009/08/crafty-cart.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hanging" >Hanging</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/hanging.1.3.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/hanging" ><img src="http://www.ezuca.com/content//2009/08/hanging.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/win7blog" >Win7blog</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/win7blog.0.5.5.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/win7blog" ><img src="http://www.ezuca.com/content//2009/08/win7blog.jpg" alt="Wordpress Theme" /></a>

<div style="width: 500px;"><span style="float: left;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simple-china" >Simple China</a></span><span style="float: right;"><a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/download/simple-china.1.4.zip" >DOWNLOAD</a></span></div>
<div style="clear: both;"></div>
<a rel="nofollow" href="http://www.ezuca.com/goto/http://wordpress.org/extend/themes/simple-china" ><img src="http://www.ezuca.com/content//2009/08/simple-china.jpg" alt="Wordpress Theme" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.ezuca.com/70-free-most-downloaded-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.ezuca.com/category/wordpress/feed/ ) in 1.48776 seconds, on Feb 5th, 2012 at 12:33 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 5th, 2012 at 1:33 am UTC -->
