<?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>ThemeBuilder</title>
	<atom:link href="http://themebuilder.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://themebuilder.nl</link>
	<description>Themes and Tricks</description>
	<lastBuildDate>Wed, 30 Jun 2010 11:26:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Add Custom Navigation Menus in WordPress 3.0 Themes</title>
		<link>http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/</link>
		<comments>http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 10:43:30 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=752</guid>
		<description><![CDATA[Custom Navigation Menus feature in WordPress 3.0 will make WordPress even more user friendly for beginners. This function let you organize your menu, create drop down menus, add new items to menu, and much more. The drag-and-drop function of this feature is what makes it extremely easy to use. This feature will not be available [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-763" title="menu" src="http://themebuilder.nl/wp-content/uploads/2010/06/menu.jpg" alt="" width="540" height="115" /></p>
<p>Custom Navigation Menus feature in WordPress 3.0 will make WordPress even more user friendly for beginners. This function let you organize your menu, create drop down menus, add new items to menu, and much more. The drag-and-drop function of this feature is what makes it extremely easy to use. This feature will not be available in older themes unless the theme author(s) update their themes. In this article, we will show you how you can enable and install custom navigation menus in your themes.</p>
<p><span id="more-752"></span></p>
<p>We see this feature as one of the most demanded feature in the future of WordPress themes. Below is a simple screenshot that shows you what you can do with this menu option.</p>
<p><a href="http://themebuilder.nl/wp-content/uploads/2010/06/menu.gif"><img class="alignnone size-full wp-image-753" title="menu" src="http://themebuilder.nl/wp-content/uploads/2010/06/menu.gif" alt="" width="520" height="469" /></a></p>
<p>You can create multiple menus, add existing categories or pages to the  menu, and you can add custom links to menu as well. You can organize the  menus and create drop-down menus with a simple drag-and-drop feature.</p>
<p><strong>How to enable Custom Navigation Menus in WordPress 3.0<br />
</strong>Like the custom  background, header  image, and post  thumbnails, the custom navigation menus also needs to be enabled  through your theme’s <em>functions.php</em> file.</p>
<p>Simply add the code below to your theme’s <em>functions.php</em> file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_theme_support<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'menus'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>If this code is not added in your <em>functions.php</em> file, the user  will not see this as an option in the Admin panel.</p>
<p><strong>How to Add Custom Navigation Menus in WordPress 3.0 Themes<br />
</strong><br />
Once you have enabled the feature, now you can add it in your theme. These menus are not limited for header.php file only. You can add them anywhere you like to fit your design’s need by pasting the code below:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #0000ff;">'menu_order'</span><span style="color: #339933;">,</span>
 <span style="color: #0000ff;">'container_class'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'menu-header'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></div></div>

<p>If this code is not added in your functions.php file, the user will not see this as an option in the Admin panel.</p>
<p><strong>How to Add Custom Navigation Menus in WordPress 3.0 Themes</strong><br />
Once you have enabled the feature, now you can add it in your theme. These menus are not limited for header.php file only. You can add them anywhere you like to fit your design’s need by pasting the code below:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #0000ff;">'menu_order'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'container_class'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'menu-header'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></div></div>

<p>The main function as you can see is wp_nav_menu. The arguments we have in the code are sort_column and container_class. The sort_column value tells WordPress to follow the order you pick in the options panel, and the container_class is the css styling class that you pick for this specific menu.</p>
<p>For custom themes: If you are using more than one menu, then you need to specify either the menu ID, menu slug, or menu name. The parameters are: $id, $slug, $menu respectively.</p>
<p>Additional Resource: <a title="WP Codex" href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" target="_self">WordPress Codex</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;n=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;title=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;title=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;title=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes&amp;summary=%0D%0A%0D%0ACustom%20Navigation%20Menus%20feature%20in%20WordPress%203.0%20will%20make%20WordPress%20even%20more%20user%20friendly%20for%20beginners.%20This%20function%20let%20you%20organize%20your%20menu%2C%20create%20drop%20down%20menus%2C%20add%20new%20items%20to%20menu%2C%20and%20much%20more.%20The%20drag-and-drop%20function%20of%20this%20feature%20is%20what%20makes%20it%20extremely%20easy%20to%20use.%20T&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;title=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 The new features</title>
		<link>http://themebuilder.nl/wordpress-3-0-the-new-features/</link>
		<comments>http://themebuilder.nl/wordpress-3-0-the-new-features/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:00:01 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=725</guid>
		<description><![CDATA[WordPress 3.0 is released with lots of breathtaking improvements and exciting new features which will surely bring this platform one step ahead. So, what actually we can expect to bundle up with this release? Here is a walk through! 1. WordPress.org and WordPress MU Wedding Yeah WordPress MU and WordPress.org are all set to tie [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-750" title="3_0" src="http://themebuilder.nl/wp-content/uploads/2010/06/3_0.png" alt="" width="540" height="115" /></p>
<p>WordPress 3.0 is released with lots of breathtaking improvements and exciting new features which will surely bring this platform one step ahead. So, what actually we can expect to bundle up with this release? Here is a walk through!</p>
<p><strong>1. WordPress.org and WordPress MU Wedding</strong><br />
Yeah WordPress MU and WordPress.org are all set to tie up with each other. Almost over a year of hard work the floks at Automattic are all set to merge their standalone blogging platform WordPress.org with multi user platform WordPress MU. This feature will come handy specially for large blog networks.</p>
<p>It is an add-on for the existing users which means it won’t hurt them if they don’t want to use it. The upgrade process will be smooth and won’t cause any difficulties to existing users. Most importantly it will be a win win situation for WordPress MU users as they can now easily use WordPress.org plugins out of the box needless to modify.<br />
<span id="more-725"></span></p>
<p><img class="alignleft size-full wp-image-726" title="wordpress-mu-merge" src="http://themebuilder.nl/wp-content/uploads/2010/06/wordpress-mu-merge.jpg" alt="" width="613" height="338" /><br />
<strong>2. Choose Username and Password while Installing</strong><br />
Earlier when you do new installation WordPress automatically choose ‘admin‘ as default username and generate a random password, however in 3.0 it allows you to choose custom username and password while installing WordPress.</p>
<p><strong>3. New Default Theme</strong><br />
It’s time to bid adieu to Kubrik theme which comes up default with WordPress. WordPress 3 has been packaged with a new theme called “Twenty Ten”. This new theme is really outstanding and minimalist at the same time. Twenty Ten has some outstanding features such as Custom Background, Custom Header, Simple and Clean Look, Multi Widget Areas Supported, Two-Columns and Drop Down Menu.</p>
<p><img class="alignleft size-full wp-image-734" title="wordpress-new_theme" src="http://themebuilder.nl/wp-content/uploads/2010/06/wordpress-new_theme.jpg" alt="" width="600" height="409" /><br />
<strong>4. Custom Background</strong><br />
WordPress 3.0 now adds support for custom background for themes. To enable custom background functionality to your theme you just have to add following code in your theme’s functions.php file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_custom_background<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>And it will enable “<strong>Background</strong>” option in WordPress  admin “<strong>Appearance</strong>” tab.</p>
<p><img class="alignleft size-full wp-image-729" title="wordpress-custom-bg" src="http://themebuilder.nl/wp-content/uploads/2010/06/wordpress-custom-bg.jpg" alt="" width="613" height="333" /><br />
<strong>5. Custom Post Types</strong><br />
This is another feature which will boost up WordPress as a CMS. This feature is due since WordPress 2.9 it allows you create different post types such as Portfolio, Products, Reviews etc. all you have to do is to just add following code in your functions.php file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> post_type_portfolio<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    register_post_type<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Portfolio'</span><span style="color: #339933;">,</span>
                <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'label'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Portfolio'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'public'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'show_ui'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    register_taxonomy_for_object_type<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_tag'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Portfolio'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>6. Navigation Menu</strong><br />
This feature is inspired by WooTheme’s WooNav which allows you to create different menu items containing Categories, Pages, External or Internal Link. It also support a widget so that you can place these menus in your sidebar as widget.<br />
<img class="alignleft size-full wp-image-737" title="wordpress-new_menu" src="http://themebuilder.nl/wp-content/uploads/2010/06/wordpress-new_menu.jpg" alt="" width="534" height="388" /><br />
<strong>7. Author Templates</strong><br />
Earlier we had category specific templates which we use to develop category based templates using category-slug.php now WordPress 3 brings the same functionality for author based templates now you can create author based template files such as ‘author-chef.php‘.</p>
<p><strong>Other Features Worth Mentioning</strong><br />
1. Now every WordPress installation will have a Welcome Guide for which helps newbies to understand WordPress better.<br />
2. Plugins will now developed by community rather than sole developer, so you can now expect updated plugins every time.<br />
3. In WordPress 3 plugins can not be edited until they are active so you must first deactivate them to be able to edit.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;n=Wordpress+3.0+The+new+features&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;title=Wordpress+3.0+The+new+features" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;title=Wordpress+3.0+The+new+features" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;title=Wordpress+3.0+The+new+features&amp;summary=%0D%0A%0D%0AWordpress%203.0%20is%20released%20with%20lots%20of%20breathtaking%20improvements%20and%20exciting%20new%20features%20which%20will%20surely%20bring%20this%20platform%20one%20step%20ahead.%20So%2C%20what%20actually%20we%20can%20expect%20to%20bundle%20up%20with%20this%20release%3F%20Here%20is%20a%20walk%20through%21%0D%0A%0D%0A1.%20Wordpress.org%20and%20Wordpress%20MU%20Wedding%0D%0AYeah%20Wordpress%20MU&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;title=Wordpress+3.0+The+new+features" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/wordpress-3-0-the-new-features/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+3.0+The+new+features+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/wordpress-3-0-the-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 “Thelonious” is out!</title>
		<link>http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/</link>
		<comments>http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 13:12:35 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=712</guid>
		<description><![CDATA[WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. Theme developers have new APIs that allow them to easily [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WordPress" href="http://hosting.ber-art.nl/wordpress" target="_blank">WordPress</a> 3.0, the  thirteenth major release of  <a title="WordPress" href="http://hosting.ber-art.nl/wordpress" target="_blank">WordPress</a> and the   culmination of half a year of work by 218  contributors, is <a rel="nofollow" href="http://wordpress.org/download/">now available  for   download</a> (or <a rel="nofollow" href="http://codex.wordpress.org/Dashboard_Updates_SubPanel">upgrade    within your dashboard</a>).</p>
<p>Major new features in this release include a  sexy <strong>new   default theme called Twenty Ten</strong>. Theme  developers have new   APIs that allow them to easily implement custom  backgrounds, headers,   shortlinks, <a rel="nofollow" href="http://codex.wordpress.org/Appearance_Menus_SubPanel" target="_blank">menus</a> (no more file editing), <a rel="nofollow" href="http://codex.wordpress.org/Custom_Post_Types" target="_blank">post types</a>, and <a rel="nofollow" href="http://codex.wordpress.org/Custom_Taxonomies" target="_blank">taxonomies</a>.    (Twenty Ten theme shows all of that off.)</p>
<p>Developers and network admins  will appreciate the long-awaited <strong>merge   of MU and WordPress</strong>,    creating the new multi-site functionality which makes it possible to    run one blog or ten million from the same installation.</p>
<p>As a user, you  will love the new <strong>lighter interface</strong>,   the contextual  help on every screen, the <strong>1,217 bug fixes and   feature  enhancements</strong>, bulk updates so you can upgrade 15 plugins at  once with a single click</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="540" height="305" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=BQtfIEY1&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="540" height="305" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" allowfullscreen="true" wmode="transparent" flashvars="guid=BQtfIEY1&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;n=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;title=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;title=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;title=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21&amp;summary=WordPress%203.0%2C%20the%20%20thirteenth%20major%20release%20of%20%20WordPress%20and%20the%20%20%20culmination%20of%20half%20a%20year%20of%20work%20by%20218%20%20contributors%2C%20is%20now%20available%20%20for%20%20%20download%20%28or%20upgrade%20%20%20%20within%20your%20dashboard%29.%0D%0A%0D%0AMajor%20new%20features%20in%20this%20release%20include%20a%20%20sexy%20new%20%20%20default%20theme%20called%20Twenty%20Ten.%20Theme%20%20de&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;title=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glossy Buttons</title>
		<link>http://themebuilder.nl/glossy-buttons/</link>
		<comments>http://themebuilder.nl/glossy-buttons/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 20:46:11 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=693</guid>
		<description><![CDATA[You have probably already seen a tutorial somewhere before or know how to make glossy button with Photoshop. Here is a tutorial to show how to do it with Illustrator in 3 steps. Cause glossy is always good! 1. Create the Circle Shapes First create a circle path and fill it with orange color. Then Copy [...]]]></description>
			<content:encoded><![CDATA[<p>You have probably already seen a tutorial somewhere before or know how to make glossy button with Photoshop. Here is a tutorial to show how to do it with Illustrator in 3 steps. Cause glossy is always good!</p>
<p>1. <strong>Create the Circle Shapes</strong><br />
First create a circle path and fill it with orange color. Then Copy (Ctrl+C) it and Paste in Front (Ctrl+F). Scale down about 40% and drag it slight below the center point of the orange circle.</p>
<p><img class="size-full wp-image-694 alignnone" src="http://themebuilder.nl/wp-content/uploads/2010/06/1.gif" alt="" width="95" height="97" /></p>
<p><span id="more-693"></span></p>
<p>2.<strong>Blend Tool</strong><br />
Select the Blend Tool, click on the top edge of the yellow circle and then click again on the top edge of the orange circle. Or you can blend them by selecting both circles, go to Object &gt; Blend &gt; Make (Ctrl+Alt+B).<img class="size-full wp-image-697 alignnone" src="http://themebuilder.nl/wp-content/uploads/2010/06/2.gif" alt="" width="394" height="207" /></p>
<p>3. <strong>Add Final Light Reflection</strong><br />
Make an oval path and fill it with black &amp; white Gradient and place it on top of the circles. Note if your color setting is CMYK, make sure the black for the gradient is full black(C=100, M=100, Y=100, K=100). With the oval path selected, go to Transparency pallate, select Screen Blend Mode. If your Transparency is not showing, go to Window &gt; Transparency or press Ctrl+Shift+F10.<img class="alignnone size-full wp-image-702" src="http://themebuilder.nl/wp-content/uploads/2010/06/31.gif" alt="" width="291" height="156" /></p>
<p><strong>Advantages</strong><br />
There are serveral advantages to create this glossy button with Illustrator than Photoshop:<br />
- It is vector, which mean it is scalable.<br />
- It is easier and faster to make this with Illustrator (less steps).<br />
- Easier to change colors, just need to fill the circles with different colors.</p>
<p><a href="http://themebuilder.nl/wp-content/uploads/2010/06/buttons_ai.png"><img class="alignleft size-full wp-image-720" title="buttons_ai" src="http://themebuilder.nl/wp-content/uploads/2010/06/buttons_ai.png" alt="" width="391" height="123" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/glossy-buttons/&amp;n=Glossy+Buttons&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/glossy-buttons/&amp;title=Glossy+Buttons" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/glossy-buttons/&amp;title=Glossy+Buttons" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/glossy-buttons/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/glossy-buttons/&amp;title=Glossy+Buttons&amp;summary=You%20have%20probably%20already%20seen%20a%20tutorial%20somewhere%20before%20or%20know%20how%20to%20make%20glossy%20button%20with%20Photoshop.%20Here%20is%20a%20tutorial%20to%20show%20how%20to%20do%20it%20with%20Illustrator%20in%203%20steps.%20Cause%20glossy%20is%20always%20good%21%0D%0A%0D%0A1.%C2%A0Create%20the%20Circle%20Shapes%0D%0AFirst%20create%20a%20circle%20path%20and%20fill%20it%20with%20orange%20color.%20Th&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/glossy-buttons/&amp;title=Glossy+Buttons" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/glossy-buttons/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Glossy+Buttons+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/glossy-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blackboard WP theme is available</title>
		<link>http://themebuilder.nl/new-theme-available/</link>
		<comments>http://themebuilder.nl/new-theme-available/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:42:35 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=681</guid>
		<description><![CDATA[Today I&#8217;ve finish my latest WordPress theme Blackboard. This theme has also been approved by wordpress.org.  This means you can download it from wordpress.org or through the back-end of your wordpress installation. A preview can be found on this location. You can download the Blackboard theme from this location. Enjoy! If you enjoy this theme [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/wp-content/uploads/2010/03/blackboard1.png"><img class="aligncenter size-full wp-image-682" title="blackboard1" src="http://themebuilder.nl/wp-content/uploads/2010/03/blackboard1.png" alt="" /></a></p>
<p>Today I&#8217;ve finish my latest WordPress theme Blackboard. This theme has also been approved by wordpress.org.  This means you can download it from wordpress.org or through the back-end of your wordpress installation.</p>
<p>A preview can be found on this <a title="Preview blackboard wp theme" href="http://themebuilder.nl/blackboard/">location</a>.</p>
<p>You can download the Blackboard theme from this <a title="Downlaod Blackboard theme" href="http://wordpress.org/extend/themes/black-board">location</a>.</p>
<p>Enjoy!</p>
<p>If you enjoy this theme or you have a question or comment, please leave a <a title="Leave a message" href="http://themebuilder.nl/new-theme-available/#respond">message</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/new-theme-available/&amp;n=New+Blackboard+WP+theme+is+available&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/new-theme-available/&amp;title=New+Blackboard+WP+theme+is+available" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/new-theme-available/&amp;title=New+Blackboard+WP+theme+is+available" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/new-theme-available/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/new-theme-available/&amp;title=New+Blackboard+WP+theme+is+available&amp;summary=%0D%0A%0D%0AToday%20I%27ve%20finish%20my%20latest%20Wordpress%20theme%20Blackboard.%20This%20theme%20has%20also%20been%20approved%20by%20wordpress.org.%C2%A0%20This%20means%20you%20can%20download%20it%20from%20wordpress.org%20or%20through%20the%20back-end%20of%20your%20wordpress%20installation.%0D%0A%0D%0AA%20preview%20can%20be%20found%20on%20this%20location.%0D%0A%0D%0AYou%20can%20download%20the%20Blackboard%20t&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/new-theme-available/&amp;title=New+Blackboard+WP+theme+is+available" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/new-theme-available/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=New+Blackboard+WP+theme+is+available+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/new-theme-available/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>10 Essential WordPress Plugins</title>
		<link>http://themebuilder.nl/10-essential-wordpress-plugins/</link>
		<comments>http://themebuilder.nl/10-essential-wordpress-plugins/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 21:46:02 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=657</guid>
		<description><![CDATA[There’s good reason why WordPress is the most popular blogging platform. It’s easy to use and has tons of great features. But what’s really made this open source software excel is its passionate community. Yes, WordPress has lots of features built in, but it doesn’t have everything. The WordPress community fills this need. It’s full [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/10-essential-wordpress-plugins/"><img class="aligncenter size-full wp-image-676" title="plugin" src="http://themebuilder.nl/wp-content/uploads/2010/03/plugin.jpg" alt="" width="540" height="115" /></a></p>
<p><a href="http://themebuilder.nl/10-essential-wordpress-plugins/"></a>There’s good reason why WordPress is the most popular blogging platform. It’s easy to use and has tons of great features. But what’s really made this open source software excel is its passionate community. Yes, WordPress has lots of features built in, but it doesn’t have everything. The WordPress community fills this need. It’s full of talented developers that are constantly creating plugins to extend the features and make it even better.</p>
<p>There are many <a title="WordPress plugins" href="http://wordpress.org/extend/plugins/">WordPress plugins</a> out there, but in this article we’re focusing on the most essential. Below is a list of 10 plugins that every WordPress website could use.</p>
<p><span id="more-657"></span></p>
<h3><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a><img class="aligncenter size-full wp-image-659" title="wordpress_plugins_2" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_2.jpg" alt="" width="540" height="355" /></h3>
<p>All in One SEO Pack optimizes your WordPress blog for search engines. Some key features include:</p>
<ul>
<li>Advanced Canonical URLs</li>
<li>Fine tune Page Navigational Links</li>
<li>Built-in API so other plugins/themes can access and extend functionality</li>
<li>ONLY plugin to provide SEO Integration for WP e-Commerce sites</li>
<li>Nonce Security</li>
<li>Support for CMS-style WordPress installations</li>
<li>Automatically optimizes your <strong>titles</strong> for search engines</li>
</ul>
<h3><a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a></h3>
<p><img class="aligncenter size-full wp-image-660" title="wordpress_plugins_4" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_4.jpg" alt="" width="540" height="437" /></p>
<p>WP Super Cache generates static html files from your dynamic WordPress blog. After an html file is generated, your web server will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.</p>
<h3><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a></h3>
<h3><img class="size-full wp-image-658 aligncenter" title="wordpress_plugins_3" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_3.jpg" alt="" width="540" height="365" /></h3>
<h3><a href="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_3.jpg"><br />
</a></h3>
<p>Google XML Sitemaps generates a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it’s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.</p>
<h3><a href="http://wordpress.org/extend/plugins/akismet/" target="_blank">Akismet</a></h3>
<p><img class="aligncenter size-full wp-image-661" title="wordpress_plugins_1" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_1.jpg" alt="" width="540" height="331" /></p>
<p>Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you review the spam it catches under your blog’s “Comments” admin screen.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup</a><img class="aligncenter size-full wp-image-662" title="wordpress_plugins_5" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_5.jpg" alt="" width="540" height="476" /></h3>
<p>WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-pagenavi/screenshots/" target="_blank">WP-PageNavi</a></h3>
<p><img class="aligncenter size-full wp-image-663" title="wordpress_plugins_6" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_6.jpg" alt="" width="540" height="367" /></p>
<p>WP-PageNavi adds a more advanced paging navigation to your WordPress site.</p>
<h3><a href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/" target="_blank">WordPress Automatic upgrade</a></h3>
<p><img class="aligncenter size-full wp-image-664" title="wordpress_plugins_7" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_7.jpg" alt="" width="540" height="197" /></p>
<p>WordPress Automatic Upgrade allows a user to automatically upgrade the WordPress installation to the latest one provided by WordPress.org using the 5 steps provided in the WordPress upgrade instructions. It automatically does the backups and provides links for downloading.</p>
<h3><a href="http://www.deliciousdays.com/cforms-plugin/" target="_blank">cforms II</a></h3>
<p><img class="aligncenter size-full wp-image-665" title="wordpress_plugins_10" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_10.jpg" alt="" width="540" height="342" /></p>
<p>cforms is a powerful and feature rich form plugin for WordPress, offering convenient deployment of multiple Ajax driven contact forms throughout your blog or even on the same page.</p>
<h3><a href="http://wordpress.org/extend/plugins/broken-link-checker/" target="_blank">Broken Link Checker</a></h3>
<p><img class="aligncenter size-full wp-image-666" title="wordpress_plugins_8" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_8.jpg" alt="" width="540" height="366" /></p>
<p>This plugin will monitor your blog looking for broken links and let you know if any are found. Some key features include:</p>
<ul>
<li>Monitors links in your posts, pages, the blogroll, and custom fields (optional).</li>
<li>Detects links that don’t work and missing images.</li>
<li>Notifies you on the Dashboard if any are found.</li>
<li>Also detects redirected links.</li>
<li>Makes broken links display differently in posts (optional).</li>
<li>Link checking intervals can be configured.</li>
</ul>
<h3><a href="http://www.google.com/support/feedburner/bin/answer.py?answer=78483&amp;topic=13252" target="_blank">FeedBurner FeedSmith</a></h3>
<p><img class="aligncenter size-full wp-image-667" title="wordpress_plugins_9" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress_plugins_9.jpg" alt="" width="540" height="232" /></p>
<p>This plugin will detect all ways to access your feed (e.g. http://www.yoursite.com/feed/ or http://www.yoursite.com/wp-rss2.php, etc.), and redirect them to your FeedBurner feed so you can track every possible subscriber. It will forward for your main posts feed and optionally, your main comments feed as well.</p>
<p>source: <a title="webdesignledger.com" href="http://webdesignledger.com" target="_blank">webdesignledger.com</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;n=10+Essential+WordPress+Plugins&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;title=10+Essential+WordPress+Plugins" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;title=10+Essential+WordPress+Plugins" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;title=10+Essential+WordPress+Plugins&amp;summary=%0D%0A%0D%0AThere%E2%80%99s%20good%20reason%20why%20WordPress%20is%20the%20most%20popular%20blogging%20platform.%20It%E2%80%99s%20easy%20to%20use%20and%20has%20tons%20of%20great%20features.%20But%20what%E2%80%99s%20really%20made%20this%20open%20source%20software%20excel%20is%20its%20passionate%20community.%20Yes%2C%20WordPress%20has%20lots%20of%20features%20built%20in%2C%20but%20it%20doesn%E2%80%99t%20have%20everything.%20The%20&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;title=10+Essential+WordPress+Plugins" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/10-essential-wordpress-plugins/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=10+Essential+WordPress+Plugins+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/10-essential-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 new features</title>
		<link>http://themebuilder.nl/wordpress-3-0-new-features/</link>
		<comments>http://themebuilder.nl/wordpress-3-0-new-features/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 22:09:48 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=637</guid>
		<description><![CDATA[WordPress team has started some time ago working on WordPress 3.0 version. There are lot many new features expected to come in WordPress 3.0. One major upgrade which is expected to come in 3.0 is the merge of WordPress and WordPress MU. Which means you will be able to install multiple sites on your normal [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WordPress 3.0 new features" href="http://themebuilder.nl/wordpress-3-0-new-features/"><img class="alignleft size-full wp-image-247" title="logowp" src="http://themebuilder.nl/wp-content/uploads/2009/06/logowp.jpg" alt="" width="540" height="115" /></a><br />
WordPress team has started some time ago working on WordPress 3.0 version. There are lot many new features expected to come in WordPress 3.0.</p>
<p>One major upgrade which is expected to come in 3.0 is the merge of WordPress and WordPress MU. Which means you will be able to install multiple sites on your normal wordpress installation as part of expansion. Currently if you want to expand your reach by adding multiple sites on your normal wordpress installation, you will have to install a new copy of wordpress each time. But after the release of WordPress 3.0, that expansion will be much easier.</p>
<h3>Menu Settings on WordPress 3.0</h3>
<p>New featured and nice one is Menu Setting, this menu is based on <a href="http://www.woothemes.com/2010/02/woonav-integrated-in-wp-30/">WooNav WooThemes Framework</a> menu. This menu system will have a drag and drop</p>
<h3><img class="size-medium wp-image-638  alignright" title="wordpress-menu-screen" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress-menu-screen-300x132.jpg" alt="" width="300" height="132" /></h3>
<p>functionality that will  combine Pages, Categories, and Links. It will also allow the ability of  re-ordering, along with sub-menus, and hiding specific Pages or  Categories from the menu altogether.</p>
<p><span id="more-637"></span></p>
<h3>Custom Image Background on WordPress 3.0</h3>
<p>In WordPress 3.0, it will have, additional to the Custom Header Image support, also a Custom Background Support. A first snapshot is in the current trunk. To use the functionality, the theme needs in functions.php this line:<em> add_custom_background();</em></p>
<p><em> </em>After that, there is in your backend under Appearance the menu Custom Background available. After uploading an image, you have the option to activate &#8220;Tile the background&#8221; and delete the background image.</p>
<h3>New default theme</h3>
<p><a href="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress-theme-2010.jpg"><img class="alignright size-medium wp-image-651" title="wordpress-theme-2010" src="http://themebuilder.nl/wp-content/uploads/2010/03/wordpress-theme-2010-300x258.jpg" alt="" width="300" height="258" /></a>The WordPress 3.0 release will be packed with a brand new default theme  called 2010. This theme will include Custom header, Custom Background,  Clean Design, Multiple Widget Areas, Cascading Menus and a lot more.  Overall, it will be a good base to build on for custom themes.</p>
<h3>Choose your own Username/Password</h3>
<p>This is a feature that I have always wanted from WordPress. From version  3.0, whenever you install WordPress, you will be able to choose your  own username and password. You will no longer have to accept “admin” for  the username and a randomly generated password.</p>
<h3>Custom Post Types</h3>
<p>Until now, you could only add posts or pages to your WordPress blog.  This feature will give you power to create content of any type that you  want. For example, you can have Portfolio listings, Products, Catalogs,  Library etc. This feature is not going to replace categories or Tags.  You will still be able to use categories. Custom Post Types will allow a  different way of sorting/displaying your content.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/wordpress-3-0-new-features/&amp;n=WordPress+3.0+new+features&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/wordpress-3-0-new-features/&amp;title=WordPress+3.0+new+features" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/wordpress-3-0-new-features/&amp;title=WordPress+3.0+new+features" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/wordpress-3-0-new-features/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/wordpress-3-0-new-features/&amp;title=WordPress+3.0+new+features&amp;summary=%0D%0AWordpress%20team%20has%20started%20some%20time%20ago%20working%20on%20Wordpress%203.0%20version.%20There%20are%20lot%20many%20new%20features%20expected%20to%20come%20in%20Wordpress%203.0.%0D%0A%0D%0AOne%20major%20upgrade%20which%20is%20expected%20to%20come%20in%203.0%20is%20the%20merge%20of%20Wordpress%20and%20Wordpress%20MU.%20Which%20means%20you%20will%20be%20able%20to%20install%20multiple%20sites%20on%20&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/wordpress-3-0-new-features/&amp;title=WordPress+3.0+new+features" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/wordpress-3-0-new-features/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=WordPress+3.0+new+features+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/wordpress-3-0-new-features/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Worldmap – Get to Know Your WP Neighbour!</title>
		<link>http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/</link>
		<comments>http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 08:29:42 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=627</guid>
		<description><![CDATA[It&#8217;s a idea by Oliver Schlöbe of WPSeek, who created the WP Worldmap. Now it is possibel for you to  see where you can find all those WordPress Users and Developers. Don&#8217;t forget to put your location and profile on the map. It&#8217;s easy to zoom and move around. Blog this on Blogger Share this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/wordpress-worldmap-%E2%80%93-get-to-know-your-wp-neighbour/"><img class="alignnone size-full wp-image-629" title="map" src="http://themebuilder.nl/wp-content/uploads/2010/02/map.jpg" alt="" width="540" height="115" /></a></p>
<p>It&#8217;s a idea b<a title="Oliver Schlöbe" href="http://www.schloebe.de/" target="_blank">y Oliver Schlöbe</a> of <a title="WPSeek" href="http://www.schloebe.de/" target="_blank">WPSeek</a>, who created the<a title="WP Worldmap" href="http://wpworldmap.net/" target="_blank"> WP Worldmap</a>. Now it is possibel for you to  see where you can find all those WordPress Users and Developers. Don&#8217;t forget to put your location and profile on the map. It&#8217;s easy to zoom and move around.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;n=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;title=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;title=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;title=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21&amp;summary=%0D%0A%0D%0AIt%27s%20a%20idea%20by%20Oliver%20Schl%C3%B6be%20of%20WPSeek%2C%20who%20created%20the%20WP%20Worldmap.%20Now%20it%20is%20possibel%20for%20you%20to%C2%A0%20see%20where%20you%20can%20find%20all%20those%20WordPress%20Users%20and%20Developers.%20Don%27t%20forget%20to%20put%20your%20location%20and%20profile%20on%20the%20map.%20It%27s%20easy%20to%20zoom%20and%20move%20around.&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/&amp;title=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+Worldmap+%E2%80%93+Get+to+Know+Your+WP+Neighbour%21+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/wordpress-worldmap-%e2%80%93-get-to-know-your-wp-neighbour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update Comment Central!</title>
		<link>http://themebuilder.nl/update-comment-central/</link>
		<comments>http://themebuilder.nl/update-comment-central/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 14:27:03 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=615</guid>
		<description><![CDATA[A new version of Comment Central is available. I&#8217;ve updated the theme with several changes. The main reason for this update is to improve the performance. I&#8217;ve changed the background. Instead using a big .PNG file it&#8217;s now a small .JPG file with a repeat-x function. The circles in the right corner are a small [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-616" title="update" src="http://themebuilder.nl/wp-content/uploads/2010/01/update.jpg" alt="" width="540" height="115" />A new version of Comment Central is available. I&#8217;ve updated the theme with several changes. The main reason for this update is to improve the performance.</p>
<p>I&#8217;ve changed the background. Instead using a big .PNG file it&#8217;s now a small .JPG file with a repeat-x function. The circles in the right corner are a small transparent .PNG file. Also, I&#8217;ve downsized some other graphic parts of the theme.  As a result the theme is less then 1MB and most important: it will load a lot quicker in your browser!</p>
<p>You can download the latest version from <a title="Download Comment Central" href="http://wordpress.org/extend/themes/comment-central" target="_self">wordpress.org.</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/update-comment-central/&amp;n=Update+Comment+Central%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/update-comment-central/&amp;title=Update+Comment+Central%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/update-comment-central/&amp;title=Update+Comment+Central%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/update-comment-central/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/update-comment-central/&amp;title=Update+Comment+Central%21&amp;summary=A%20new%20version%20of%20Comment%20Central%20is%20available.%20I%27ve%20updated%20the%20theme%20with%20several%20changes.%20The%20main%20reason%20for%20this%20update%20is%20to%20improve%20the%20performance.%0D%0A%0D%0AI%27ve%20changed%20the%20background.%20Instead%20using%20a%20big%20.PNG%20file%20it%27s%20now%20a%20small%20.JPG%20file%20with%20a%20repeat-x%20function.%20The%20circles%20in%20the%20right%20corne&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/update-comment-central/&amp;title=Update+Comment+Central%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/update-comment-central/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Update+Comment+Central%21+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/update-comment-central/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>24 Best free icon sets</title>
		<link>http://themebuilder.nl/24-best-free-icon-sets/</link>
		<comments>http://themebuilder.nl/24-best-free-icon-sets/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 22:01:04 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=454</guid>
		<description><![CDATA[When you designing your own WordPress theme, it’s important to make sure the interface is natural and easy to use. Using icons along side navigation links is one key ingredient to achieving this. But Instead of creating icon sets from scratch, which can be time consuming, why not use icons that have already been created [...]]]></description>
			<content:encoded><![CDATA[<p><a title="24 Best free icon sets" href="http://themebuilder.nl/24-best-free-icon-sets/" target="_self"><img class="aligncenter size-full wp-image-555" title="icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/icons.png" alt="" width="540" height="115" /></a><br />
When you designing your own WordPress theme, it’s important to make sure the interface is natural and easy to use. Using icons along side navigation links is one key ingredient to achieving this. But Instead of creating icon sets from scratch, which can be time consuming, why not use icons that have already been created for you?</p>
<p>Here are some of the best icon sets out there for use in your design.</p>
<p><span id="more-454"></span></p>
<h3><a title="Doodle Icon Set" href="http://www.blog.spoongraphics.co.uk/freebies/free-hand-drawn-doodle-icon-set-for-bloggers" target="_blank">Hand Drawn Doodle Icon Set</a></p>
<p><a title="Hand Drawn Doodle Icon Set" href="http://www.blog.spoongraphics.co.uk/freebies/free-hand-drawn-doodle-icon-set-for-bloggers" target="_blank"><img title="Hand Drawn Doodle Icon Set" src="http://themebuilder.nl/wp-content/uploads/2010/01/doodle.png" alt="" width="540" height="60" /></a></h3>
<h3><a title="Stickers Icons" href="http://dryicons.com/free-icons/preview/stickers-icon-set/" target="_blank">Stickers Icons</a></h3>
<p style="text-align: center;"><a title="Stickers Icons" href="http://dryicons.com/free-icons/preview/stickers-icon-set/" target="_blank"><img class="aligncenter size-full wp-image-548" title="Stickers Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/sticker2.png" alt="" width="540" height="60" /></a></p>
<h3><a href="http://www.icojoy.com/articles/46/" target="_blank">Onebit icon set</a></p>
<p style="text-align: center;"><a title="Onebit icon set" href="http://www.icojoy.com/articles/46/" target="_blank"><img class="aligncenter size-full wp-image-476" title="Onebit icon set" src="http://themebuilder.nl/wp-content/uploads/2010/01/onebit1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="WooThemes Icon set" href="http://www.woothemes.com/2009/02/wp-woothemes-ultimate-icon-set-first-release/" target="_blank">WP WooThemes Ultimate Icon Set</a></p>
<p style="text-align: center;"><a title="WP WooThemes Ultimate Icon Set" href="http://www.woothemes.com/2009/02/wp-woothemes-ultimate-icon-set-first-release/" target="_blank"><img class="aligncenter size-full wp-image-480" title="WP WooThemes Ultimate Icon Set" src="http://themebuilder.nl/wp-content/uploads/2010/01/woothemes1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Led Icon Set" href="http://led24.de/iconset/" target="_blank">Led Icon Set</a></p>
<p style="text-align: center;"><a title="Led Icon Set" href="http://led24.de/iconset/" target="_blank"><img class="aligncenter size-full wp-image-487" title="Led Icon Set" src="http://themebuilder.nl/wp-content/uploads/2010/01/led3.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="MiniIcons" href="http://kyo-tux.deviantart.com/art/MinIcons-115690703" target="_blank">MinIcons</a></p>
<p style="text-align: center;"><a title="MinIcons" href="http://kyo-tux.deviantart.com/art/MinIcons-115690703" target="_blank"><img class="aligncenter size-full wp-image-490" title="MinIcons" src="http://themebuilder.nl/wp-content/uploads/2010/01/minIcons.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Grung Peeling Stickers" href="http://www.tutorial9.net/resources/free-icons-grunge-peeling-stickers-social-media-icons/" target="_blank">Grunge Peeling Stickers</a></p>
<p style="text-align: center;"><a title="Grunge Peeling Icons" href="http://www.tutorial9.net/resources/free-icons-grunge-peeling-stickers-social-media-icons/" target="_blank"><img class="aligncenter size-full wp-image-492" title="Grunge Peeling Stickers" src="http://themebuilder.nl/wp-content/uploads/2010/01/peeling.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Watercolor Icon Pack" href="http://www.tutorial9.net/resources/watercolor-free-icon-pack/" target="_blank">WatercolorIicon Pack</a></p>
<p style="text-align: center;"><a title="Water Color Icon Pack" href="http://www.tutorial9.net/resources/watercolor-free-icon-pack/" target="_blank"><img class="aligncenter size-full wp-image-494" title="WatercolorIicon Pack" src="http://themebuilder.nl/wp-content/uploads/2010/01/watercolor.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Nust Have Icons" href="http://www.visualpharm.com/must_have_icon_set/" target="_blank">Must Have Icons</a></p>
<p style="text-align: center;"><a title="Must Have Icons" href="http://www.visualpharm.com/must_have_icon_set/" target="_blank"><img class="aligncenter size-full wp-image-497" title="Must Have Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/musthave1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Social Icons hand drawn" href="http://theg-force.deviantart.com/art/Social-Icons-hand-drawned-109467069" target="_blank">Social Icons hand drawn</a></p>
<p style="text-align: center;"><a title="Social Icons hand drawn" href="http://theg-force.deviantart.com/art/Social-Icons-hand-drawned-109467069" target="_blank"><img class="aligncenter size-full wp-image-499" title="Social Icons hand drawn" src="http://themebuilder.nl/wp-content/uploads/2010/01/Social.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Hand Dranw Vector Icons" href="http://blogthememachine.com/hand-drawn-vector-icons/" target="_blank">Hand Drawn Vector Icons</a></p>
<p style="text-align: center;"><a title="Hand Drawn Vector Icons" href="http://blogthememachine.com/hand-drawn-vector-icons/" target="_blank"><img class="aligncenter size-full wp-image-501" title="Hand Drawn Vector Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/handdrawn.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="hand-drawn sketch icons" href="http://www.charfishdesign.com/goodies/19-free-hand-drawn-sketch-icons/" target="_blank">Hand-drawn sketch icons</a></p>
<p style="text-align: center;"><a title="Hand-drawn sketch icons" href="http://www.charfishdesign.com/goodies/19-free-hand-drawn-sketch-icons/" target="_blank"><img class="aligncenter size-full wp-image-507" title="Hand-drawn sketch icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/sketch2.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="OldSchool Icon Set" href="http://freebiesdock.com/oldschool-icon-set/" target="_blank">OldSchool Icon Set</a></p>
<p style="text-align: center;"><a title="OldSchool Icon Set" href="http://freebiesdock.com/oldschool-icon-set/" target="_blank"><img class="aligncenter size-full wp-image-513" title="OldSchool Icon Set" src="http://themebuilder.nl/wp-content/uploads/2010/01/oldschool.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Icon Feed Jeans" href="http://xyberneticos.com/index.php/2008/10/17/icon-feed-jeans-by-xyberneticos/" target="_blank">Icon Feed Jeans</a></p>
<p style="text-align: center;"><a title="Icon Feed Jeans" href="http://xyberneticos.com/index.php/2008/10/17/icon-feed-jeans-by-xyberneticos/" target="_blank"><img class="aligncenter size-full wp-image-515" title="Icon Feed Jeans" src="http://themebuilder.nl/wp-content/uploads/2010/01/jeans.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Retrofukation -Icons" href="http://jg-visuals.deviantart.com/art/Retrofukation-Icons-102315475" target="_blank">Retrofukation Icons</a></p>
<p style="text-align: center;"><a title="Retrofukation" href="http://jg-visuals.deviantart.com/art/Retrofukation-Icons-102315475" target="_blank"><img class="aligncenter size-full wp-image-517" title="Retrofukation Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/retrofukation.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Basic set" href="http://prokofusha.deviantart.com/art/Basic-set-125164098" target="_blank">Basic set</a></p>
<p style="text-align: center;"><a title="Basic Set" href="http://prokofusha.deviantart.com/art/Basic-set-125164098" target="_blank"><img class="aligncenter size-full wp-image-520" title="Basic set" src="http://themebuilder.nl/wp-content/uploads/2010/01/basic1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Handycons" href="http://www.jankoatwarpspeed.com/post/2008/10/20/Handycons-a-free-hand-drawn-social-media-icon-set.aspx" target="_blank">Handycons</a></p>
<p style="text-align: center;"><a title="Handycons" href="http://www.jankoatwarpspeed.com/post/2008/10/20/Handycons-a-free-hand-drawn-social-media-icon-set.aspx" target="_blank"><img class="aligncenter size-full wp-image-522" title="Handycons" src="http://themebuilder.nl/wp-content/uploads/2010/01/handycons.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="IconPack" href="http://7ur.deviantart.com/art/iConPack-now-with-psd-53066224" target="_blank">IconPack</a></p>
<p style="text-align: center;"><a title="IconPack" href="http://7ur.deviantart.com/art/iConPack-now-with-psd-53066224" target="_blank"><img class="aligncenter size-full wp-image-524" title="IconPack" src="http://themebuilder.nl/wp-content/uploads/2010/01/iconpack.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Sketchy Paper" href="http://dryicons.com/free-icons/icons-list/sketchy-paper-icons/" target="_blank">Sketchy Paper</a></p>
<p style="text-align: center;"><a title="Sketchy Paper" href="http://dryicons.com/free-icons/preview/sketchy-paper-icons/" target="_blank"><img class="aligncenter size-full wp-image-528" title="Sketchy Paper" src="http://themebuilder.nl/wp-content/uploads/2010/01/paper1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Blossim Icons" href="http://dryicons.com/free-icons/preview/blossom/" target="_blank">Blossom Icons</a></p>
<p style="text-align: center;"><a title="Blossom Icons" href="http://dryicons.com/free-icons/preview/blossom/" target="_blank"><img class="aligncenter size-full wp-image-533" title="Blossom Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/blossom1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Cute Blogging Icons" href="http://www.webiconset.com/cute-blogging-icon-set/" target="_blank">Cute Blogging Icons</a></p>
<p style="text-align: center;"><a title="Cute Blogging Icons" href="http://www.webiconset.com/cute-blogging-icon-set/" target="_blank"><img class="aligncenter size-full wp-image-536" title="Cute Blogging Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/cute1.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Old Bottle Crowns Icon Set" href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/" target="_blank">Old Bottle Crowns Icon Set</a></p>
<p style="text-align: center;"><a title="Old Bottle Crowns Icons" href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/" target="_blank"><img class="aligncenter size-full wp-image-538" title="Old Bottle Crowns Icon Set" src="http://themebuilder.nl/wp-content/uploads/2010/01/crowns.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Chinese Wind Icon" href="http://kidaubis.deviantart.com/art/KIDAUBIS-CHINESE-WIND-ICON-81950564" target="_blank">Chinese Wind Icon</a></p>
<p style="text-align: center;"><a title="Chinese Wind Icons" href="http://kidaubis.deviantart.com/art/KIDAUBIS-CHINESE-WIND-ICON-81950564" target="_blank"><img class="aligncenter size-full wp-image-540" title="Chinese Wind Icon" src="http://themebuilder.nl/wp-content/uploads/2010/01/chinese.png" alt="" width="540" height="60" /></a></p>
</h3>
<h3><a title="Distortion Icons" href="http://dryicons.com/free-icons/preview/distortion-icons-set/" target="_blank">Distortion Icons</a></p>
<p style="text-align: center;"><a title="Distortion Icons" href="http://dryicons.com/free-icons/preview/distortion-icons-set/" target="_blank"><img class="aligncenter size-full wp-image-543" title="Distortion Icons" src="http://themebuilder.nl/wp-content/uploads/2010/01/distortion.png" alt="" width="540" height="60" /></a></p>
</h3>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/24-best-free-icon-sets/&amp;n=24+Best+free+icon+sets&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/24-best-free-icon-sets/&amp;title=24+Best+free+icon+sets" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://themebuilder.nl/24-best-free-icon-sets/&amp;title=24+Best+free+icon+sets" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://themebuilder.nl/24-best-free-icon-sets/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/24-best-free-icon-sets/&amp;title=24+Best+free+icon+sets&amp;summary=%0D%0AWhen%20you%20designing%20your%20own%20Wordpress%20theme%2C%20it%E2%80%99s%20important%20to%20make%20sure%20the%20interface%20is%20natural%20and%20easy%20to%20use.%20Using%20icons%20along%20side%20navigation%20links%20is%20one%20key%20ingredient%20to%20achieving%20this.%20But%20Instead%20of%20creating%20icon%20sets%20from%20scratch%2C%20which%20can%20be%20time%20consuming%2C%20why%20not%20use%20icons%20that%20&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/24-best-free-icon-sets/&amp;title=24+Best+free+icon+sets" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/24-best-free-icon-sets/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=24+Best+free+icon+sets+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/24-best-free-icon-sets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
