<?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 &#187; Wordpress Code</title>
	<atom:link href="http://themebuilder.nl/category/wordpress-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://themebuilder.nl</link>
	<description>Themes and Tricks</description>
	<lastBuildDate>Tue, 15 May 2012 13:57:14 +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>14 Tricks to Make Your Theme Better</title>
		<link>http://themebuilder.nl/15-wordpress-tricks-theme/</link>
		<comments>http://themebuilder.nl/15-wordpress-tricks-theme/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 11:11:37 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=772</guid>
		<description><![CDATA[WordPress is a very powerful CMS (Content Management System). It has tons of capability and can be extremely powerful. There&#8217;s only one thing in the way from all of this power and you as the blog owner &#8211; your theme. See, no matter how many awesome features such as threaded comments or breadcrumb navigation or [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://themebuilder.nl/15-wordpress-tricks-theme/"><img class="aligncenter size-full wp-image-778" title="tipstricks" src="http://themebuilder.nl/wp-content/uploads/2010/11/tipstricks.jpg" alt="Wordpress tips and tricks" width="540" height="115" /></a></p>
<p>WordPress is a very powerful CMS (Content Management System). It has tons of capability and can be extremely powerful. There&#8217;s only one thing in the way from all of this power and you as the blog owner &#8211; <em>your theme</em>. See, no matter how many awesome features such as threaded comments or breadcrumb navigation or even an &#8220;edit&#8221; link beside each post are added, you&#8217;re limited by your theme that you are using. If you theme isn&#8217;t &#8220;smart&#8221; enough to use these features, well, quite frankly, you can&#8217;t use them.</p>
<p>This is a post for all the WordPress theme developers out there. Here are only a few of the many great snippets of code that will take your current theme creation and make it that much better. Please, use them.</p>
<p><span id="more-772"></span></p>
<p><strong>1- How to Disable Commenting on Posts Older Than 1 Month</strong><br />
A great way to reduce the amount of spam you receive is to disable the ability to comment on posts that are more than 1 month old. Just paste the following in your functions.php file. Note: To change the amount of time from 1 month, just replace 30 (days) with any number of days you want.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">post_date_gmt <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">30</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">24</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">60</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">60</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$posts</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>comment_status <span style="color: #339933;">=</span> <span style="color: #0000ff;">'closed'</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$posts</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>ping_status    <span style="color: #339933;">=</span> <span style="color: #0000ff;">'closed'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$posts</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'the_posts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'close_comments'</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><strong>2 &#8211; How to Add an Automatically Changing Copyright Year in Your Footer</strong><br />
This is a common sight on most sites, something like a &#8220;Copyright 2007 &#8211; 2009&#8243; or something similar in the footer. Thing is, it&#8217;s been more than a month since the new year and yet I&#8217;m still seeing &#8220;2008&#8243; as the current year on some sites. This is how you can make WordPress change the date for you. Put in this snippet of code wherever you want the dynamic date to be displayed.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Copyright © 200x<span style="color: #339933;">-</span> Example<span style="color: #339933;">.</span>com<span style="color: #339933;">.</span></pre></div></div>

<p><strong>3 &#8211; How to Display a List of Allowed HTML Tags for Use in Comments</strong><br />
Ever been to a blog where you&#8217;ve seen a list of all of the allowed HTML tags right above the comment form? Ever wonder how to do that in WordPress? Well, wonder no more.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">You may use<span style="color: #339933;">:</span> <span style="color: #339933;">.</span></pre></div></div>

<p><strong>4 &#8211; How to Add an &#8220;Edit&#8221; Link Next to Each Post</strong><br />
Ever see an error in one of your posts and sigh at the fact that you have to now go an navigate through the WordPress Dashboard just to get to the post to edit it? Not anymore. Just add this next in single.php, index.php, or wherever a post appears. Note &#8211; <em>Only admins can see the edit link</em>.</p>
<p><strong>5 &#8211; How to Remove Curly Quotes From Your Posts</strong><br />
Ever copy and paste some php code you found on a website and find out that all of the quotation and apostrophe marks were causing errors? This is because of the way WordPress styles these punctuation marks to make them more aesthetically pleasing. Who needs that, right? Just paste this code into your functions.php file and you&#8217;re good to go.</p>
<p><strong>6 &#8211; How to Remove Curly Quotes From Your Comments</strong><br />
Same thing as above, only this time, the code removes the curly quotes from your comments instead of posts.</p>
<p><strong>7 &#8211; How to Disable Search Engine Indexing on a Certain Category</strong><br />
This code snippet is more for SEO purposes, possibly to avoid duplicate content or something similar. Make sure search engines don&#8217;t index any posts in a certain category by applying this to your head tags in <strong>header.php</strong>. <em>Note &#8211; Change the category number of 4 to the category you want to prevent search engines from seeing.</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #0000ff;">';
}</span></pre></div></div>

<p><strong>8 &#8211; How to Display the Total Number of Posts on Your Blog</strong><br />
A useful code snippet that displays how many posts you&#8217;ve made.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">get_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT count(*) FROM <span style="color: #006699; font-weight: bold;">$wpdb</span>-&amp;gt;posts WHERE post_status = 'publish' AND post_type = 'post'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span> <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #000088;">$numposts</span><span style="color: #009900;">&#41;</span>      <span style="color: #000088;">$numposts</span> <span style="color: #339933;">=</span> <span style="color: #990000;">number_format</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$numposts</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$numposts</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' posts.'</span><span style="color: #339933;">;</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></div></div>

<p><strong>9 &#8211; How to Add a Simple &#8220;Tweet This&#8221; Link to Each Post</strong><br />
Twitter is getting more and more popular each day. To make this benefit you, why not add a nice little &#8220;Tweet This&#8221; button to each blog post? Put this somewhere in <strong>The Loop</strong> in <strong>single.php</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a title=&quot;Send this page to Twitter!&quot; href=&quot;http://twitter.com/home?status=I just read &amp;lt;?php the_permalink(); ?&amp;gt;&quot; target=&quot;_blank&quot;&gt;Tweet This!&lt;/a&gt;</pre></div></div>

<p><strong>10 &#8211; How to Display Your Scheduled Posts</strong><br />
Scheduling your posts in WordPress is a great feature. Create a sense of suspense for your readers by allowing them to see the title&#8217;s of upcoming posts. Paste this anywhere in your theme files.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$my_query</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>the_post<span style="color: #009900;">&#40;</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><strong>11 &#8211; How to Exclude Certain Categories From Being Shown</strong><br />
If, for whatever reason, you don&#8217;t want certain categories to be displayed, paste this code into <strong>The Loop</strong>. Note &#8211; Replace &#8220;3&#8243; with the number corresponding to the category you want to block.</p>
<p><strong>12 &#8211; How to Allow Styling of Individual Posts</strong><br />
This is a pain when themes don&#8217;t have this built in. If the user of your theme wants to style a single post differently than all of the others, the only way for you to make this easy for them is by giving each post a unique identifier. To do this, simple make use of &#8220;the_ID&#8221; in The Loop.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p><strong>13 &#8211; How to Add a Unique Identifier to Each Comment</strong></p>
<p>This basically follows the same idea as above, only now it&#8217;s applied to comments.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p><strong>14 &#8211; How to Separate Trackbacks / Pingbacks and Actual Comments</strong></p>
<p>The comment area of your posts should be a place where your readers can talk and discuss things with you and eachother. It&#8217;s annoying if this discussion is interrupted by a few trackback announcements. Tidy up the comment area by putting the comments in one pile and the trackbacks in another.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&nbsp;</pre></div></div>



<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/15-wordpress-tricks-theme/&amp;t=14+Tricks+to+Make+Your+Theme+Better" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=14+Tricks+to+Make+Your+Theme+Better+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/15-wordpress-tricks-theme/&amp;title=14+Tricks+to+Make+Your+Theme+Better&amp;summary=%0D%0AWordPress%20is%20a%20very%20powerful%20CMS%20%28Content%20Management%20System%29.%20It%20has%20tons%20of%20capability%20and%20can%20be%20extremely%20powerful.%20There%27s%20only%20one%20thing%20in%20the%20way%20from%20all%20of%20this%20power%20and%20you%20as%20the%20blog%20owner%20-%20your%20theme.%20See%2C%20no%20matter%20how%20many%20awesome%20features%20such%20as%20threaded%20comments%20or%20breadcrumb%20n&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/15-wordpress-tricks-theme/&amp;n=14+Tricks+to+Make+Your+Theme+Better&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/15-wordpress-tricks-theme/&amp;title=14+Tricks+to+Make+Your+Theme+Better" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/15-wordpress-tricks-theme/&amp;title=14+Tricks+to+Make+Your+Theme+Better" 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/15-wordpress-tricks-theme/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/15-wordpress-tricks-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<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="Custom Navigation Menus WordPress" 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>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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/&amp;t=How+to+Add+Custom+Navigation+Menus+in+WordPress+3.0+Themes" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</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>
		<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-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-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>
</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>2</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[Wordpress Code]]></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="New functions WordPress 3.0" 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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/wordpress-3-0-the-new-features/&amp;t=Wordpress+3.0+The+new+features" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</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>
		<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-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-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>
</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 href="http://wordpress.org/download/" rel="nofollow">now available for download</a> (or <a href="http://codex.wordpress.org/Dashboard_Updates_SubPanel" rel="nofollow">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 href="http://codex.wordpress.org/Appearance_Menus_SubPanel" rel="nofollow" target="_blank">menus</a> (no more file editing), <a href="http://codex.wordpress.org/Custom_Post_Types" rel="nofollow" target="_blank">post types</a>, and <a href="http://codex.wordpress.org/Custom_Taxonomies" rel="nofollow" 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 width="540" height="305" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 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 width="540" height="305" type="application/x-shockwave-flash" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" flashvars="guid=BQtfIEY1&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" wmode="transparent" allowfullscreen="true" /></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/wordpress-3-0-%e2%80%9cthelonious%e2%80%9d-is-out/&amp;t=WordPress+3.0+%E2%80%9CThelonious%E2%80%9D+is+out%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</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>
		<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%20thirteenth%20major%20release%20of%20WordPress%20and%20the%20culmination%20of%20half%20a%20year%20of%20work%20by%20218%20contributors%2C%20is%20now%20available%20for%20download%20%28or%20upgrade%20within%20your%20dashboard%29.%0D%0A%0D%0AMajor%20new%20features%20in%20this%20release%20include%20a%20sexy%20new%20default%20theme%20called%20Twenty%20Ten.%20Theme%20developers%20have%20n&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<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-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>
</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>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 style="text-align: center;"><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="1o essetial wordpress plugins" 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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/10-essential-wordpress-plugins/&amp;t=10+Essential+WordPress+Plugins" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</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>
		<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%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%20Wo&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<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-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>
</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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/wordpress-3-0-new-features/&amp;t=WordPress+3.0+new+features" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</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>
		<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-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-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>
</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>Move the Kubrick Sidebar to the left</title>
		<link>http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/</link>
		<comments>http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 16:46:43 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=435</guid>
		<description><![CDATA[The default Kubrick template that comes with WordPress is great straight out of the box. However, some people prefer to have their pages and posts laid out differently. By default, the sidebar is located on the right side of the page rather than the left. The following tutorial explains how to easily move the sidebar [...]]]></description>
			<content:encoded><![CDATA[<p>The default Kubrick template that comes with <a title="ordpress.org" href="http://www.wordpress.org">WordPress</a><br />
is great straight out of the box. However, some people prefer to have their pages and posts laid out differently.</p>
<p>By default, the sidebar is located on the right side of the page rather than the left. The following tutorial explains how to easily move the sidebar from right to left.</p>
<p><span id="more-435"></span></p>
<p>Login to your WordPress admin panel</p>
<p>From the navigation menu, select Design and then select Theme Editor from the sub menu.</p>
<p>Within the Theme Editor, select stylesheet from the theme files listed vertically to the right. The Style.css file should now be presented in the editor window and is ready for editing.</p>
<p>From the editor window, find the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.narrowcolumn</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">20px</span> <span style="color: #933;">45px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">450px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Replace this piece of code with the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.narrowcolumn</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">45px</span> <span style="color: #933;">20px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">450px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Next find the following piece code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span>
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">545px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">190px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Replace with the following:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#sidebar</span>
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">190px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Click the Update File button on the lower right hand side of the Theme Editor screen.</p>
<p>You see the background image doesn&#8217;t change. From this point you can design the rest of the theme or download the background and flip it with for example Photoshop. You can find the background image (kubrickbg.jpg)in the theme directory: /wp-content/themes/default/images</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/&amp;t=Move+the+Kubrick+Sidebar+to+the+left" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Move+the+Kubrick+Sidebar+to+the+left+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (11)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/&amp;title=Move+the+Kubrick+Sidebar+to+the+left&amp;summary=The%20default%20Kubrick%20template%20that%20comes%20with%20WordPress%0D%0Ais%20great%20straight%20out%20of%20the%20box.%20However%2C%20some%20people%20prefer%20to%20have%20their%20pages%20and%20posts%20laid%20out%20differently.%0D%0A%0D%0ABy%20default%2C%20the%20sidebar%20is%20located%20on%20the%20right%20side%20of%20the%20page%20rather%20than%20the%20left.%20The%20following%20tutorial%20explains%20how%20to%20e&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/&amp;n=Move+the+Kubrick+Sidebar+to+the+left&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/move-the-kubrick-sidebar-to-the-left/&amp;title=Move+the+Kubrick+Sidebar+to+the+left" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/&amp;title=Move+the+Kubrick+Sidebar+to+the+left" 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/move-the-kubrick-sidebar-to-the-left/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/move-the-kubrick-sidebar-to-the-left/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the Size of the Avatar</title>
		<link>http://themebuilder.nl/changing-the-size-of-the-avatar/</link>
		<comments>http://themebuilder.nl/changing-the-size-of-the-avatar/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 20:37:03 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=372</guid>
		<description><![CDATA[The default size of an avatar in a wordpress theme is 32×32px, which is sometime&#8217;s a bit small. In my new theme design I want to change it to 60×60px instead. In your theme, open the comments.php and look for the following code: &#160; This simple line of code has a lot of options available. [...]]]></description>
			<content:encoded><![CDATA[<p>The default size of an avatar in a wordpress theme is 32×32px, which is sometime&#8217;s a bit small. In my new theme design I want to change it to 60×60px instead.</p>
<p>In your theme, open the comments.php and look for the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p>This simple line of code has a lot of options available. If you want to learn more about them, just have a look at the WordPress Codex pages. For now, we’ll just concentrate on the size of the avatar.</p>
<p>The way to change the default size is simply by adding some text inside the function, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p>It&#8217;s that simple!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/changing-the-size-of-the-avatar/&amp;t=Changing+the+Size+of+the+Avatar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Changing+the+Size+of+the+Avatar+-+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>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/changing-the-size-of-the-avatar/&amp;title=Changing+the+Size+of+the+Avatar&amp;summary=The%20default%20size%20of%20an%20avatar%20in%20a%20wordpress%20theme%20is%2032%C3%9732px%2C%20which%20is%20sometime%27s%20a%20bit%20small.%20In%20my%20new%20theme%20design%20I%20want%20to%20change%20it%20to%2060%C3%9760px%20instead.%0D%0A%0D%0AIn%20your%20theme%2C%20open%20the%20comments.php%20and%20look%20for%20the%20following%20code%3A%0D%0A%0D%0AThis%20simple%20line%20of%20code%20has%20a%20lot%20of%20options%20available.%20If%20you&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/changing-the-size-of-the-avatar/&amp;n=Changing+the+Size+of+the+Avatar&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/changing-the-size-of-the-avatar/&amp;title=Changing+the+Size+of+the+Avatar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/changing-the-size-of-the-avatar/&amp;title=Changing+the+Size+of+the+Avatar" 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/changing-the-size-of-the-avatar/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/changing-the-size-of-the-avatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say hello to WordPress 2.9 &#8220;Carmen&#8221;</title>
		<link>http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/</link>
		<comments>http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 18:45:58 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[Carmen]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=574</guid>
		<description><![CDATA[The long awaited WordPress 2.9 is finally here. This version is called  “Carmen” on the behalf of honor of magical jazz vocalist Carmen McRae. You can upgrade easily from your Dashboard by going to Tools &#62; Upgrade, or you can download from WordPress.org. A few of the new features are outlined in the video below. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="New WordPress version 2.9 &quot;Carmen&quot;" href="http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/" target="_self"><img class="aligncenter size-full wp-image-575" title="carmen" src="http://themebuilder.nl/wp-content/uploads/2010/01/carmen.gif" alt="" width="540" height="115" /></a><br />
The long awaited WordPress 2.9 is finally here. This version is called  “Carmen” on the behalf of honor of magical jazz vocalist Carmen McRae. You can upgrade easily from your Dashboard by going to Tools &gt; Upgrade, or you can download from <a title="Wordpress.org" href="http://www.wordpress.org" target="_self">WordPress.org.</a></p>
<p>A few of the new features are outlined in the video below.</p>
<p><object width="540" height="305" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=NBZ853Xn&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" /><param name="allowfullscreen" value="true" /><embed width="540" height="305" type="application/x-shockwave-flash" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" flashvars="guid=NBZ853Xn&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M" allowfullscreen="true" /></object><br />
<strong><br />
<span id="more-574"></span><br />
The hot new features includes:</strong></p>
<ul>
<li>Global undo/”trash” feature, which means that if you accidentally delete a post or comment you can bring it back from the grave (i.e., the Trash). This also eliminates those annoying “are you sure” messages we used to have on every delete.</li>
</ul>
<ul>
<li>Built-in image editor allows you to crop, edit, rotate, flip, and scale your images to show them who’s boss. This is the first wave of our many planned media-handling improvements.</li>
<li>Batch plugin update and compatibility checking, which means you can update 10 plugins at once, versus having to do multiple clicks for each one, and we’re using the new compatibility data from the plugins directory to give you a better idea of whether your plugins are compatible with new releases of WordPress. This should take the fear and hassle out of upgrading.</li>
</ul>
<ul>
<li>Easier video embeds that allow you to just paste a URL on its own line and have it magically turn it into the proper embed code, with Oembed support for YouTube, Daily Motion, Blip.tv, Flickr, Hulu, Viddler, Qik, Revision3, Scribd, Google Video, Photobucket, PollDaddy, and WordPress.tv (and more in the next release).</li>
</ul>
<p>More information can be found in the <a title="Wordpress 2.9 Codex" href="http://codex.wordpress.org/Version_2.9" target="_self">WordPress 2.9 Codex</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/&amp;t=Say+hello+to+Wordpress+2.9+%22Carmen%22" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Say+hello+to+Wordpress+2.9+%22Carmen%22+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (11)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/&amp;title=Say+hello+to+Wordpress+2.9+%22Carmen%22&amp;summary=%0D%0AThe%20long%20awaited%20Wordpress%202.9%20is%20finally%20here.%20This%20version%20is%20called%C2%A0%20%E2%80%9CCarmen%E2%80%9D%20on%20the%20behalf%20of%20honor%20of%20magical%20jazz%20vocalist%20Carmen%20McRae.%20You%20can%20upgrade%20easily%20from%20your%20Dashboard%20by%20going%20to%20Tools%20%26gt%3B%20Upgrade%2C%20or%20you%20can%20download%20from%20WordPress.org.%0D%0A%0D%0AA%20few%20of%20the%20new%20features%20are%20ou&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/&amp;n=Say+hello+to+Wordpress+2.9+%22Carmen%22&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/say-hello-to-wordpress-2-9-carmen/&amp;title=Say+hello+to+Wordpress+2.9+%22Carmen%22" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/&amp;title=Say+hello+to+Wordpress+2.9+%22Carmen%22" 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/say-hello-to-wordpress-2-9-carmen/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/say-hello-to-wordpress-2-9-carmen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create your own WordPress theme</title>
		<link>http://themebuilder.nl/how-to-create-your-own-wordpress-theme/</link>
		<comments>http://themebuilder.nl/how-to-create-your-own-wordpress-theme/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 23:03:46 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=355</guid>
		<description><![CDATA[For quite some time I&#8217;m working on websites and WordPress themes. As a designer it&#8217;s not that hard to &#8216;draw&#8217; a good design. The real job is turning this great design into a functioning WordPress theme. But no fear,  I´ve found some great tutorials and resources which tell you exactly how! Designing a WordPress Theme [...]]]></description>
			<content:encoded><![CDATA[<p>For quite some time I&#8217;m working on websites and WordPress themes. As a designer it&#8217;s not that hard to &#8216;draw&#8217; a good design. The real job is turning this great design into a functioning WordPress theme. But no fear,  I´ve found some great tutorials and resources which tell you exactly how!</p>
<ol>
<li><a title="Design a wordpress theme from scratch" href="http://lorelle.wordpress.com/2005/09/28/designing-a-wordpress-theme-from-scratch/" target="_self">Designing a WordPress Theme From Scratch</a></li>
<li><a title="Create WordPress Themes from scratch part 1" href="http://themetation.com/2008/07/14/how-to-create-wordpress-themes-from-scratch-part-1/" target="_self">How To Create WordPress Themes From Scratch Part 1</a></li>
<li><a title="Create a wordpress theme from scratch - video" href="http://blog.steffanantonas.com/how-to-create-a-wordpress-theme-from-scratch-complete-video-series.htm" target="_self">How To Create A WordPress Theme From Scratch (Complete Video Series)</a></li>
<li><a title="Create a wordpress theme from scratch - net.tuts" href="http://net.tutsplus.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/" target="_self">How to Create a WordPress Theme from Scratch – net.tuts</a></li>
<li><a title="Designing for WordPress" href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/" target="_self">Designing for WordPress: Complete Series &amp; Downloads</a></li>
<li><a title="Creating a WordPress theme with Dreamweaver" href="http://www.adobe.com/devnet/dreamweaver/articles/creating_wordpress_theme_with_dreamweaver_pt1.html" target="_self">Creating a WordPress theme with Dreamweaver – Part 1: Learning the basics</a></li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/how-to-create-your-own-wordpress-theme/&amp;t=How+to+create+your+own+Wordpress+theme" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+create+your+own+Wordpress+theme+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (11)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/how-to-create-your-own-wordpress-theme/&amp;title=How+to+create+your+own+Wordpress+theme&amp;summary=For%20quite%20some%20time%20I%27m%20working%20on%20websites%20and%20Wordpress%20themes.%20As%20a%20designer%20it%27s%20not%20that%20hard%20to%20%27draw%27%20a%20good%20design.%20The%20real%20job%20is%20turning%20this%20great%20design%20into%20a%20functioning%20Wordpress%20theme.%20But%20no%20fear%2C%C2%A0%20I%C2%B4ve%20found%20some%20great%20tutorials%20and%20resources%20which%20tell%20you%20exactly%20how%21%0D%0A%0D%0A%09Desi&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/how-to-create-your-own-wordpress-theme/&amp;n=How+to+create+your+own+Wordpress+theme&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-create-your-own-wordpress-theme/&amp;title=How+to+create+your+own+Wordpress+theme" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/how-to-create-your-own-wordpress-theme/&amp;title=How+to+create+your+own+Wordpress+theme" 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-create-your-own-wordpress-theme/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/how-to-create-your-own-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

