<?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</title>
	<atom:link href="http://themebuilder.nl/tag/wordpress/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>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%20links.%20But%20you%20can%20disable%20HTML%20in%20WordPress%20Comments%20to%20be%20functional.%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%20open%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/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>WordPress Cheat Sheet</title>
		<link>http://themebuilder.nl/wordpress-cheat-sheet/</link>
		<comments>http://themebuilder.nl/wordpress-cheat-sheet/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 16:16:42 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[Cheat sheet]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=192</guid>
		<description><![CDATA[A WordPress Cheat Sheets can be very helpful for every WordPress user. Especially if you start working on your own WordPress theme. Or you just want to customize a existing theme. You can find on Google a lot of WordPress Cheat Sheets. But most are outdated, not finished or just too complicated. If you want [...]]]></description>
			<content:encoded><![CDATA[<p>A WordPress Cheat Sheets can be very helpful for every WordPress user. Especially if you start working on your own WordPress theme. Or you just want to customize a existing theme. You can find on Google a lot of WordPress Cheat Sheets. But most are outdated, not finished or just too complicated.</p>
<p>If you want to go tweaking the insides of WordPress go and have a look at the <a title="Liquidicity" href="http://www.gosquared.com/liquidicity/" target="_blank">Liquidicity</a> WordPress cheat sheet.</p>
<p>The WordPress Help Sheet includes the following:</p>
<ul>
<li><strong>Basic Template Files<br />
</strong></li>
<li><strong>PHP Snippets for the Header</strong></li>
<li><strong>PHP Snippets for the Templates</strong></li>
<li><strong>And Extra Stuff for WordPress</strong></li>
</ul>
<p>Download: <a href="http://themebuilder.nl/wp-content/uploads/2009/12/WordPress-Help-Sheet.pdf" target="_self">WordPress-Help-Sheet</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/wordpress-cheat-sheet/&amp;t=WordPress+Cheat+Sheet" 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+Cheat+Sheet+-+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-cheat-sheet/&amp;title=WordPress+Cheat+Sheet&amp;summary=A%20WordPress%20Cheat%20Sheets%20can%20be%20very%20helpful%20for%20every%20WordPress%20user.%20Especially%20if%20you%20start%20working%20on%20your%20own%20WordPress%20theme.%20Or%20you%20just%20want%20to%20customize%20a%20existing%20theme.%20You%20can%20find%20on%20Google%20a%20lot%20of%20WordPress%20Cheat%20Sheets.%20But%20most%20are%20outdated%2C%20not%20finished%20or%20just%20too%20complicated.%0D%0A%0D%0A&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-cheat-sheet/&amp;n=WordPress+Cheat+Sheet&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-cheat-sheet/&amp;title=WordPress+Cheat+Sheet" 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-cheat-sheet/&amp;title=WordPress+Cheat+Sheet" 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-cheat-sheet/" 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-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eerste Thema binnekort klaar</title>
		<link>http://themebuilder.nl/hello-world/</link>
		<comments>http://themebuilder.nl/hello-world/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:17:17 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=1</guid>
		<description><![CDATA[Het eerste volledig zelf ontwikkelde WordPress thema is klaar. Het thema draag de naam MMistque. Het thema wordt op dit moment nog uitgebreid getest maar is zeer binnenkort hier te downloaden. Het is een fris modern en strak thema met een oosters tintje. De pagina heeft een vaste breedte met twee kolommen en de menubalk [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-15" title="theme_01" src="http://themebuilder.nl/wp-content/uploads/2009/06/theme_011-150x150.png" alt="theme_01" width="150" height="150" />Het eerste volledig zelf ontwikkelde <a title="Wordpress" href="http://wordpress.org/" target="_blank">WordPress </a>thema is klaar. Het thema draag de naam MMistque. Het thema wordt op dit moment nog uitgebreid getest maar is zeer binnenkort hier te downloaden.</p>
<p>Het is een fris modern en strak thema met een oosters tintje.  De pagina heeft een vaste breedte met twee kolommen en de menubalk aan de rechterkant. Tevens is er horizontaal een dropdown menu in verwerkt. Natuurlijk is het MMistique thema widget ready.</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/hello-world/&amp;t=Eerste+Thema+binnekort+klaar" 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=Eerste+Thema+binnekort+klaar+-+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/hello-world/&amp;title=Eerste+Thema+binnekort+klaar&amp;summary=Het%20eerste%20volledig%20zelf%20ontwikkelde%20Wordpress%20thema%20is%20klaar.%20Het%20thema%20draag%20de%20naam%20MMistque.%20Het%20thema%20wordt%20op%20dit%20moment%20nog%20uitgebreid%20getest%20maar%20is%20zeer%20binnenkort%20hier%20te%20downloaden.%0D%0A%0D%0AHet%20is%20een%20fris%20modern%20en%20strak%20thema%20met%20een%20oosters%20tintje.%20%20De%20pagina%20heeft%20een%20vaste%20breedte%20met%20twe&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/hello-world/&amp;n=Eerste+Thema+binnekort+klaar&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/hello-world/&amp;title=Eerste+Thema+binnekort+klaar" 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/hello-world/&amp;title=Eerste+Thema+binnekort+klaar" 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/hello-world/" 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/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

