<?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>Sat, 02 Jul 2011 01:00:19 +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>Disable HTML in WordPress Comments</title>
		<link>http://themebuilder.nl/disable-html-wordpress-comments/</link>
		<comments>http://themebuilder.nl/disable-html-wordpress-comments/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 01:00:19 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=873</guid>
		<description><![CDATA[In your SPAM folde there are many comments with alot of HTML codes which are basically links. That is how most spammers add links. But you can disable HTML in WordPress Comments to be functional. So if someone uses the strong code, it will not bold the text etc. All you have to do is [...]]]></description>
			<content:encoded><![CDATA[<p>In your SPAM folde there are many comments with alot of HTML codes which are basically links. That is how most spammers add  links. But you can disable HTML in WordPress Comments to be functional.  So if someone uses the strong code, it will not bold the text etc.</p>
<p>All you have to do is simply open your <em>functions.php</em> and add the following code:</p>
<p>&nbsp;</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #666666; font-style: italic;">// This will occur when the comment is posted</span>
    <span style="color: #000000; font-weight: bold;">function</span> plc_comment_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$incoming_comment</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">// convert everything in a comment to display literally</span>
    <span style="color: #000088;">$incoming_comment</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'comment_content'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$incoming_comment</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'comment_content'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">// the one exception is single quotes, which cannot be #039; because WordPress marks it as spam</span>
    <span style="color: #000088;">$incoming_comment</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'comment_content'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #0000ff;">', $incoming_comment['</span>comment_content<span style="color: #0000ff;">'] );
&nbsp;
    return( $incoming_comment );
    }
&nbsp;
    // This will occur before a comment is displayed
    function plc_comment_display( $comment_to_display ) {
&nbsp;
    // Put the single quotes back in
    $comment_to_display = str_replace( '</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$comment_to_display</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$comment_to_display</span><span style="color: #339933;">;</span></pre></div></div>

<p>The original <a href="http://www.theblog.ca/literal-comments">author </a>also offers a plugin that you can download from his site.</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/disable-html-wordpress-comments/&amp;t=Disable+HTML+in+WordPress+Comments" 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=Disable+HTML+in+WordPress+Comments+-+http://bit.ly/lyq4bT&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/disable-html-wordpress-comments/&amp;title=Disable+HTML+in+WordPress+Comments&amp;summary=In%20your%20SPAM%20folde%20there%20are%20many%20comments%20with%20alot%20of%20HTML%20codes%20which%20are%20basically%20links.%20That%20is%20how%20most%20spammers%20add%20%20links.%20But%20you%20can%20disable%20HTML%20in%20WordPress%20Comments%20to%20be%20functional.%20%20So%20if%20someone%20uses%20the%20strong%20code%2C%20it%20will%20not%20bold%20the%20text%20etc.%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20simply%20ope&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/disable-html-wordpress-comments/&amp;n=Disable+HTML+in+WordPress+Comments&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/disable-html-wordpress-comments/&amp;title=Disable+HTML+in+WordPress+Comments" 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/disable-html-wordpress-comments/&amp;title=Disable+HTML+in+WordPress+Comments" 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/disable-html-wordpress-comments/" 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/disable-html-wordpress-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Your WordPress Site to Dropbox</title>
		<link>http://themebuilder.nl/automatically-backup-wordpress-site-dropbox/</link>
		<comments>http://themebuilder.nl/automatically-backup-wordpress-site-dropbox/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 08:30:46 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=867</guid>
		<description><![CDATA[A new plugin is available that gives you the change to put Dropbox to work for the security of your great WordPress site. Here’s how you can set up automatic backups of your WordPress site to Dropbox! Isn&#8217;t that Great or what? Step 1: Signup for Dropbox the free version is not enough space for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-868" title="dropbox_logo_home" src="http://themebuilder.nl/wp-content/uploads/2011/07/dropbox_logo_home.png" alt="" width="290" height="75" />A new plugin is available that gives you the change to put <a href="https://www.dropbox.com/" target="_blank">Dropbox</a> to work for the security of your great WordPress site. Here’s how you can  set up automatic backups of your WordPress site to Dropbox! Isn&#8217;t that Great or what?</p>
<h4>Step 1: Signup for <a href="https://www.dropbox.com/" target="_blank">Dropbox</a></h4>
<p>the free version is not enough space for you, you’ll can <a href="https://www.dropbox.com/pricing" target="_blank">purchase a plan</a> that will accommodate your website backups.</p>
<h4><span id="more-867"></span></h4>
<h4>Step 2: Install and activate the <a href="http://wordpress.org/extend/plugins/wordpress-backup-to-dropbox/" target="_blank">WordPress Backup to Dropbox</a> plugin</h4>
<p>It’s free and available in the WordPress plugin repository.</p>
<h4>Step 3: Authorize the plugin with Dropbox</h4>
<p>After installing and activating the plugin, you’ll be prompted to  authenticate so that the plugin can gain access to your Dropbox account.</p>
<h4>Step 4: Select the day, time and how often you wish your backup to be made.</h4>
<p>The plugin’s settings page will show your next scheduled backup and how  much space you have available. It also allows you to specify the folder  in Dropbox where you want the backup to be placed. You have the option  to store the backup locally as well.</p>
<p>One of the most handy features of this plugin is that it allows you to  specify how many backups you want to keep, so that you don’t continually  go over your limit with Dropbox.</p>
<h4>Step 5: Wait for your backups to appear in the specified Dropbox folder.</h4>
<p>Once you have the settings configured and have scheduled your backup,  wait for a zipped archive of your website’s files and its database to  be dropped in your Dropbox. Backups will be prepared automatically for  you, so make sure to verify that it’s working correctly before you set  it and forget it.</p>
<p>The bottom line is that you know you should be backing up your  WordPress site. If Dropbox makes that more convenient for you, then by  all means, take advantage of its services. You’ll be glad to find that  backup in your Dropbox folder if your hosting fails.</p>
<p>&nbsp;</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/automatically-backup-wordpress-site-dropbox/&amp;t=Backup+Your+WordPress+Site+to+Dropbox" 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=Backup+Your+WordPress+Site+to+Dropbox+-+http://bit.ly/lEqyKO&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/automatically-backup-wordpress-site-dropbox/&amp;title=Backup+Your+WordPress+Site+to+Dropbox&amp;summary=A%20new%20plugin%20is%20available%20that%20gives%20you%20the%20change%20to%20put%20Dropbox%20to%20work%20for%20the%20security%20of%20your%20great%20WordPress%20site.%20Here%E2%80%99s%20how%20you%20can%20%20set%20up%20automatic%20backups%20of%20your%20WordPress%20site%20to%20Dropbox%21%20Isn%27t%20that%20Great%20or%20what%3F%0D%0AStep%201%3A%20Signup%20for%20Dropbox%0D%0Athe%20free%20version%20is%20not%20enough%20space%20for%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/automatically-backup-wordpress-site-dropbox/&amp;n=Backup+Your+WordPress+Site+to+Dropbox&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/automatically-backup-wordpress-site-dropbox/&amp;title=Backup+Your+WordPress+Site+to+Dropbox" 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/automatically-backup-wordpress-site-dropbox/&amp;title=Backup+Your+WordPress+Site+to+Dropbox" 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/automatically-backup-wordpress-site-dropbox/" 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/automatically-backup-wordpress-site-dropbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 Fancy Web Design Footers</title>
		<link>http://themebuilder.nl/15-fancy-web-design-footers/</link>
		<comments>http://themebuilder.nl/15-fancy-web-design-footers/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 21:01:29 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Footers]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=839</guid>
		<description><![CDATA[While many sites still opt for a simple line of copyright details and a contact link and with some luck some color, footers have become more and more visually stunning as a way to provide a complete feeling to a design. Here are 15 web design footers that you can use for inspiration! 1. Tapbots [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/15-fancy-web-design-footers"><img class="alignnone size-full wp-image-863" title="great_footers" src="http://themebuilder.nl/wp-content/uploads/2011/06/great_footers.png" alt="" width="540" height="115" /></a></p>
<p>While many sites still opt for a simple line of copyright  details and a contact link and with some luck some color, footers have become more and more visually  stunning as a way to provide a complete feeling to a design.</p>
<p>Here are 15 web design footers that you can use for inspiration!</p>
<p><span id="more-839"></span></p>
<h3>1. Tapbots</h3>
<p><a href="http://tapbots.com/"><img class="alignnone size-full wp-image-840" title="tapbots" src="http://themebuilder.nl/wp-content/uploads/2011/06/tapbots.jpg" alt="Footer tapbots" width="590" height="255" /></a></p>
<h3>2. Grzegorz Kozak</h3>
<p><strong><a href="http://grzegorzkozak.pl/"><img class="alignnone size-full wp-image-843" title="grezegorz Kozak" src="http://themebuilder.nl/wp-content/uploads/2011/06/grezegorz-Kozak.jpg" alt="grezegorz Kozak footer" width="590" height="255" /></a></strong><br />
<strong> </strong></p>
<p>&nbsp;</p>
<h3>3. CSSTricks</h3>
<p><strong><a href="www.csstricks.com"><img class="alignnone size-full wp-image-844" title="csstricks" src="http://themebuilder.nl/wp-content/uploads/2011/06/csstrcks.jpg" alt="csstricks footer" width="590" height="255" /></a></strong></p>
<p>&nbsp;</p>
<h3>4. Singularity Design</h3>
<p><strong><a href="http://blog.singularitydesign.com/"><img class="alignnone size-full wp-image-845" title="Singularity_Design" src="http://themebuilder.nl/wp-content/uploads/2011/06/Singularity_Design.jpg" alt="Singularity Design footer" width="590" height="255" /></a></strong></p>
<p>&nbsp;</p>
<h3>5. Amuki</h3>
<p><strong><a href="http://www.amuki.blogspot.com/"><img class="alignnone size-full wp-image-846" title="amuki" src="http://themebuilder.nl/wp-content/uploads/2011/06/amuki.jpg" alt="Amuki footer" width="590" height="255" /></a></strong></p>
<p>&nbsp;</p>
<h3>6. The Pixel</h3>
<p><strong><a href="http://www.thepixel.com/blog/"><img class="alignnone size-full wp-image-847" title="thepixel" src="http://themebuilder.nl/wp-content/uploads/2011/06/thepixel.jpg" alt="The Pixel footer" width="590" height="255" /></a><br />
</strong></p>
<p>&nbsp;</p>
<h3>7. Ma.tt</h3>
<p><strong><a href="http://ma.tt/"><img class="alignnone size-full wp-image-848" title="matt" src="http://themebuilder.nl/wp-content/uploads/2011/06/matt.jpg" alt="Ma.tt Footer" width="590" height="255" /></a></strong></p>
<h3>8. urbanpie</h3>
<p><a href="http://www.urbanpie.co.uk/"><img class="alignnone size-full wp-image-849" title="urbanpie" src="http://themebuilder.nl/wp-content/uploads/2011/06/urbanpie.jpg" alt="urbanpie footer" width="590" height="255" /></a></p>
<p>&nbsp;</p>
<h3>9.  Pojeta</h3>
<p><a href="http://themebuilder.nl/wp-content/uploads/2011/06/pojeta.jpg"><img class="alignnone size-full wp-image-850" title="pojeta" src="http://themebuilder.nl/wp-content/uploads/2011/06/pojeta.jpg" alt="pojeta footer" width="590" height="255" /></a></p>
<h3>10. Spoongraphics</h3>
<p><a href="http://www.blog.spoongraphics.co.uk/"><img class="alignnone size-full wp-image-853" title="spoongraphics" src="http://themebuilder.nl/wp-content/uploads/2011/06/spoongraphics.jpg" alt="spoongraphics footer" width="590" height="255" /></a></p>
<p>&nbsp;</p>
<h3>11. Maketheneighborsjealous</h3>
<p><a href="http://www.maketheneighborsjealous.com/"><img class="alignnone size-full wp-image-854" title="maketheneighborsjealous" src="http://themebuilder.nl/wp-content/uploads/2011/06/maketheneighborsjealous.jpg" alt="Make the neighbors jealous footer" width="590" height="255" /></a></p>
<p>&nbsp;</p>
<h3>12. Boagworld</h3>
<p><a href="http://boagworld.com/"><img class="alignnone size-full wp-image-855" title="boagworld" src="http://themebuilder.nl/wp-content/uploads/2011/06/boagworld.jpg" alt="Boagworld footer" width="590" height="255" /></a></p>
<p>&nbsp;</p>
<h3>13. Branded07</h3>
<p><a href="http://www.branded07.com/"><img class="alignnone size-full wp-image-856" title="branded07" src="http://themebuilder.nl/wp-content/uploads/2011/06/branded07.jpg" alt="Branded07 footer" width="590" height="255" /></a></p>
<h3>14. Ligne13</h3>
<p><a href="http://www.ligne13.com/blog/"><img class="alignnone size-full wp-image-857" title="ligne13" src="http://themebuilder.nl/wp-content/uploads/2011/06/ligne13.jpg" alt="ligne13 Footer" width="590" height="255" /></a></p>
<p>&nbsp;</p>
<h3>15. bcandullo.com</h3>
<p><a href="http://www.bcandullo.com/"><img class="alignnone size-full wp-image-858" title="bcandullo" src="http://themebuilder.nl/wp-content/uploads/2011/06/bcandullo.jpg" alt="bcandullo footer" width="590" height="255" /></a></p>
<p>&nbsp;</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/15-fancy-web-design-footers/&amp;t=15+Fancy+Web+Design+Footers" 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=15+Fancy+Web+Design+Footers+-+http://bit.ly/iq9DfA&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-fancy-web-design-footers/&amp;title=15+Fancy+Web+Design+Footers&amp;summary=%0D%0A%0D%0AWhile%20many%20sites%20still%20opt%20for%20a%20simple%20line%20of%20copyright%20%20details%20and%20a%20contact%20link%20and%20with%20some%20luck%20some%20color%2C%20footers%20have%20become%20more%20and%20more%20visually%20%20stunning%20as%20a%20way%20to%20provide%20a%20complete%20feeling%20to%20a%20design.%0D%0A%0D%0AHere%20are%2015%20web%20design%20footers%20that%20you%20can%20use%20for%20inspiration%21%0D%0A%0D%0A%0D%0A1&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-fancy-web-design-footers/&amp;n=15+Fancy+Web+Design+Footers&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-fancy-web-design-footers/&amp;title=15+Fancy+Web+Design+Footers" 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-fancy-web-design-footers/&amp;title=15+Fancy+Web+Design+Footers" 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-fancy-web-design-footers/" 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-fancy-web-design-footers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful JQuery Sliders for your theme</title>
		<link>http://themebuilder.nl/jquery-sliders-theme/</link>
		<comments>http://themebuilder.nl/jquery-sliders-theme/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 20:28:08 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=802</guid>
		<description><![CDATA[You’ve probably noticed that a lot of websites lately have a featured area with content that slides or changes in some way. This is a great technique to show several pieces of content in a limited amount of space and a good way to engage the user. Hereby al list of the ten greatest sliders. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://themebuilder.nl/jquery-sliders-theme/"><img class="aligncenter size-full wp-image-816" title="jquery_sliders" src="http://themebuilder.nl/wp-content/uploads/2011/06/jquery_sliders.png" alt="jQuery Sliders" width="540" height="115" /></a><br />
You’ve probably noticed that a lot of websites lately have a featured area with content that slides or changes in some way. This is a great technique to show several pieces of content in a limited amount of space and a good way to engage the user. Hereby al list of the ten greatest sliders.</p>
<p><span id="more-802"></span></p>
<h3>1 &#8211; Nivo Slider</h3>
<p><a href="http://nivo.dev7studios.com/"><img class="size-full wp-image-803 alignnone" title="nivoslider" src="http://themebuilder.nl/wp-content/uploads/2011/06/nivoslider.jpg" alt="Nivoslider" width="540" height="115" /></a></p>
<p>This is a new launched image slider what use jQuery. Is cross browser  and have 9 unique transition effects, navigation controls, is simple,  clean, valid markup and free.</p>
<h3>2 &#8211; Lof jSiderNews</h3>
<p><a href="http://landofcoder.com/jquery-plugins/item/10-the-lof-jsidernews-plugin"><img class="aligncenter size-full wp-image-825" title="lofjsidernews" src="http://themebuilder.nl/wp-content/uploads/2011/06/lofjsidernews.jpg" alt="Lof jSiderNews Plugin " width="540" height="115" /></a>Base on the Jquery Framework and the Easing Plugin, The JSiderNews Plugin is a slideshow plugin that displaying images or type of content and support favious navigation options.</p>
<p><strong>3 &#8211; Jquery Slide Deck</strong></p>
<p><strong><a href="http://themebuilder.nl/wp-content/uploads/2011/06/slidedeck.jpg"><img class="alignnone size-full wp-image-827" title="slidedeck" src="http://themebuilder.nl/wp-content/uploads/2011/06/slidedeck.jpg" alt="Slidedeck" width="540" height="115" /></a><br />
</strong></p>
<p>What is SlideDeck?  SlideDeck is a powerful slider plugin made for web designers.</p>
<h3>4 &#8211; Boutique Carousel</h3>
<p><a href="http://s3.envato.com/files/1237671/index.html"><img class="alignnone size-full wp-image-831" title="boutique_carousel" src="http://themebuilder.nl/wp-content/uploads/2011/06/boutique_carousel.jpg" alt="Boutique Carousel" width="540" height="115" /></a></p>
<p>A ready to use jQuery slider/carousel to present your images in a unique, smooth and customizable way.</p>
<h3>5 &#8211; Kwicks</h3>
<p><a href="http://www.jeremymartin.name/projects.php?project=kwicks"><img class="alignnone size-full wp-image-833" title="kwicks" src="http://themebuilder.nl/wp-content/uploads/2011/06/kwicks.jpg" alt="kwicks slider" width="540" height="115" /></a></p>
<p>The plugin is called Kwicks and you can download it from the <a href="http://www.jeremymartin.name/projects.php?project=kwicks">Kwicks Home Page</a> but I`m presenting you above another demo from Kriesi, on his wordpress theme, Newscast.</p>
<h3>6 &#8211; Parallax Slider</h3>
<p><a href="http://tympanus.net/Tutorials/ParallaxSlider/"><img class="size-full wp-image-804  alignleft" title="parallax_slider" src="http://themebuilder.nl/wp-content/uploads/2011/06/parallax_slider.jpg" alt="Parallax Jquery Slider" width="540" height="115" /></a></p>
<p>Great and very clean slider.</p>
<h3>7 &#8211; Advanced jQuery background image slideshow</h3>
<p><a href="http://www.marcofolio.net/webdesign/advanced_jquery_background_image_slideshow.html"><img class="size-full wp-image-805  alignleft" title="advanced_bg_slider" src="http://themebuilder.nl/wp-content/uploads/2011/06/advanced_bg_slider.jpg" alt="advanced background slider" width="540" height="115" /></a></p>
<p>With the use of transparent PNG&#8217;s, some HTML, pretty nifty CSS and <a title="jQuery" href="http://jquery.com/">jQuery</a>, you can make this unique for your website.</p>
<h3>8 &#8211; Automatic Image Slider w/ CSS &amp; jQuery</h3>
<p><a href="http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/"><img title="rotator" src="http://themebuilder.nl/wp-content/uploads/2011/06/rotator.jpg" alt="Rotator jQuery slider" width="540" height="115" /></a>Great tutorial  for a nice and clean image slider using HTML/CSS/Javascript</p>
<h3>9 &#8211; Beautiful Apple-Style Slideshow</h3>
<p><a href="http://demo.tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/demo.html"><img title="apple_like_slider" src="http://themebuilder.nl/wp-content/uploads/2011/06/apple_like_slider.jpg" alt="Apple like slider" width="540" height="115" /></a><br />
A Beautiful Apple-style Slideshow Gallery With CSS &amp; jQuery</p>
<h3>10 &#8211; S3Slider</h3>
<p><a href="http://www.serie3.info/s3slider/"><img class="aligncenter size-full wp-image-824" title="s3slider" src="http://themebuilder.nl/wp-content/uploads/2011/06/s3slider.jpg" alt="s3slider tutorial" width="540" height="115" /></a>This slider I&#8217;ve used in some of projects.</p>
<p>&nbsp;</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/jquery-sliders-theme/&amp;t=Useful+JQuery+Sliders+for+your+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=Useful+JQuery+Sliders+for+your+theme+-+http://bit.ly/iPh74l&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/jquery-sliders-theme/&amp;title=Useful+JQuery+Sliders+for+your+theme&amp;summary=%0D%0AYou%E2%80%99ve%20probably%20noticed%20that%20a%20lot%20of%20websites%20lately%20have%20a%20featured%20area%20with%20content%20that%20slides%20or%20changes%20in%20some%20way.%20This%20is%20a%20great%20technique%20to%20show%20several%20pieces%20of%20content%20in%20a%20limited%20amount%20of%20space%20and%20a%20good%20way%20to%20engage%20the%20user.%20Hereby%20al%20list%20of%20the%20ten%20greatest%20sliders.%0D%0A%0D%0A1&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/jquery-sliders-theme/&amp;n=Useful+JQuery+Sliders+for+your+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/jquery-sliders-theme/&amp;title=Useful+JQuery+Sliders+for+your+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/jquery-sliders-theme/&amp;title=Useful+JQuery+Sliders+for+your+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/jquery-sliders-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/jquery-sliders-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<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;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post-&amp;lt;?php the_ID(); ?&amp;gt;&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post-container&quot;</span><span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;!--</span> Post Content <span style="color: #339933;">--&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></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;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;comment-&amp;lt;?php comment_ID() ?&amp;gt;&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;comment-container&quot;</span><span style="color: #339933;">&gt;</span>
     <span style="color: #339933;">&lt;!--</span> Comment Content <span style="color: #339933;">--&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></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;">&lt;!-- It's a comment --&gt;
&lt;!-- Comment content goes here --&gt;
&nbsp;
&lt;!-- It's a trackback --&gt;</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.%20%20It%20has%20%20tons%20of%20capability%20and%20can%20be%20extremely%20powerful.%20%20There%27s%20only%20one%20%20thing%20in%20the%20way%20from%20all%20of%20this%20power%20and%20you%20as%20the%20blog%20owner%20-%20your%20theme.%20%20%20See%2C%20no%20matter%20how%20many%20awesome%20features%20such%20as%20threaded%20comments%20or%20%20bread&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 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-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%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-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>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[Inspiration]]></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" title="Glossy button" src="http://themebuilder.nl/wp-content/uploads/2010/06/1.gif" alt="Glossy button tutorial" 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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/glossy-buttons/&amp;t=Glossy+Buttons" 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=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>
		<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-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-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>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/glossy-buttons/feed/</wfw:commentRss>
		<slash:comments>1</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-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/new-theme-available/&amp;t=New+Blackboard+WP+theme+is+available" 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=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>
		<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-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-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>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/new-theme-available/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
	</channel>
</rss>

