<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"	>
<channel>
	<title>Comments on: How to Disable HTML in WordPress Comments</title>
	<atom:link href="http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/</link>
	<description>Beginner&#039;s Guide for WordPress</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:04:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: wordpress hosting</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-125061</link>
		<dc:creator>wordpress hosting</dc:creator>
		<pubDate>Thu, 19 Jan 2012 10:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-125061</guid>
		<description>The more mature you are, the harder at risk you are for getting something undesirable happen to you while overseas. Thanks for revealing your suggestions on this blog.You have good grapes on wordpress thanks for making my problem so easy .</description>
		<content:encoded><![CDATA[<p>The more mature you are, the harder at risk you are for getting something undesirable happen to you while overseas. Thanks for revealing your suggestions on this blog.You have good grapes on wordpress thanks for making my problem so easy .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kamal</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-11123</link>
		<dc:creator>Kamal</dc:creator>
		<pubDate>Sun, 21 Mar 2010 07:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-11123</guid>
		<description>Great, by this way one can ensure that nobody drops links in the comment box. I really hate to see people doing that unnecessarily.</description>
		<content:encoded><![CDATA[<p>Great, by this way one can ensure that nobody drops links in the comment box. I really hate to see people doing that unnecessarily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editorial Staff</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-9371</link>
		<dc:creator>Editorial Staff</dc:creator>
		<pubDate>Fri, 19 Feb 2010 14:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-9371</guid>
		<description>Yes you are right, but we are not supporting Thesis on this site because it is not compatible with the GPL License.</description>
		<content:encoded><![CDATA[<p>Yes you are right, but we are not supporting <a href="http://www.wpbeginner.com/refer/thesis" style="" target="_blank" rel="nofollow" onmouseover="self.status='Thesis - The Best WordPress Theme';return true;" onmouseout="self.status=''">Thesis</a> on this site because it is not compatible with the GPL License.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shoaib hussain</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-9313</link>
		<dc:creator>shoaib hussain</dc:creator>
		<pubDate>Thu, 18 Feb 2010 10:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-9313</guid>
		<description>Nice piece of code,but if you happen to use thesis like I am,only needs to check a radio button and the html code vanishes.</description>
		<content:encoded><![CDATA[<p>Nice piece of code,but if you happen to use <a href="http://www.wpbeginner.com/refer/thesis" style="" target="_blank" rel="nofollow" onmouseover="self.status='Thesis - The Best WordPress Theme';return true;" onmouseout="self.status=''">thesis</a> like I am,only needs to check a radio button and the html code vanishes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cruz3N</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-8527</link>
		<dc:creator>Cruz3N</dc:creator>
		<pubDate>Wed, 03 Feb 2010 23:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-8527</guid>
		<description>Its confused me Bro, but i make some simple plugin that allow you to replace with &amp;gt ;

&lt;?php
/*
Plugin Name: Filter Comments
Plugin URI: http://cruzenaldo.com/plugin-sederhana-filter-komentar/
Description: Plugin sederhana untuk melakukan filterisasi terhadap komentar dan mencegah user menginput tag - tag HTML
Author: Cruz3N
Author URI: http://www.cruzenaldo.com/
Version: 1.0
*/

function my_function ($text) {
	$text = str_replace(&#039;&#039;, &#039;&amp;gt ;&#039;, $text);
	return $text;
}

add_filter(&#039;comment_text&#039;, &#039;my_function&#039;);
?&gt;

You can modification that better... Hope usefull

Download here
http://www.box.net/shared/rgb4lmt5uy

And this is my ugly blog :p
http://cruzenaldo.com/

Best Regard
Cruz3N</description>
		<content:encoded><![CDATA[<p>Its confused me Bro, but i make some simple plugin that allow you to replace with &amp;gt ;</p>
<p>&lt;?php<br />
/*<br />
Plugin Name: Filter Comments<br />
Plugin URI: <a href="http://cruzenaldo.com/plugin-sederhana-filter-komentar/" rel="nofollow">http://cruzenaldo.com/plugin-sederhana-filter-komentar/</a><br />
Description: Plugin sederhana untuk melakukan filterisasi terhadap komentar dan mencegah user menginput tag &#8211; tag HTML<br />
Author: Cruz3N<br />
Author URI: <a href="http://www.cruzenaldo.com/" rel="nofollow">http://www.cruzenaldo.com/</a><br />
Version: 1.0<br />
*/</p>
<p>function my_function ($text) {<br />
	$text = str_replace(&#039;&#8217;, &#8216;&amp;gt ;&#8217;, $text);<br />
	return $text;<br />
}</p>
<p>add_filter(&#8216;comment_text&#8217;, &#8216;my_function&#8217;);<br />
?&gt;</p>
<p>You can modification that better&#8230; Hope usefull</p>
<p>Download here<br />
<a href="http://www.box.net/shared/rgb4lmt5uy" rel="nofollow">http://www.box.net/shared/rgb4lmt5uy</a></p>
<p>And this is my ugly blog :p<br />
<a href="http://cruzenaldo.com/" rel="nofollow">http://cruzenaldo.com/</a></p>
<p>Best Regard<br />
Cruz3N</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Infographiste</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-8335</link>
		<dc:creator>Infographiste</dc:creator>
		<pubDate>Sat, 30 Jan 2010 18:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-8335</guid>
		<description>Thank you for the useful tuto and easy to follow. I&#039;ve found another one explaining how to disable HTML but was to hard and badly explained, anyway thanks again and have a great week end :)</description>
		<content:encoded><![CDATA[<p>Thank you for the useful tuto and easy to follow. I&#8217;ve found another one explaining how to disable HTML but was to hard and badly explained, anyway thanks again and have a great week end <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michelle</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-6910</link>
		<dc:creator>michelle</dc:creator>
		<pubDate>Fri, 01 Jan 2010 14:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-6910</guid>
		<description>this great and should help to block out loads of spam :) thanks</description>
		<content:encoded><![CDATA[<p>this great and should help to block out loads of spam <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editorial Staff</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-6745</link>
		<dc:creator>Editorial Staff</dc:creator>
		<pubDate>Mon, 28 Dec 2009 15:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-6745</guid>
		<description>Haven&#039;t tried yet, but don&#039;t think it should.</description>
		<content:encoded><![CDATA[<p>Haven&#8217;t tried yet, but don&#8217;t think it should.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogger Pemula</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-6728</link>
		<dc:creator>Blogger Pemula</dc:creator>
		<pubDate>Mon, 28 Dec 2009 01:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-6728</guid>
		<description>Thanks for the Great Tips.
Is it affecting commentluv plugin?</description>
		<content:encoded><![CDATA[<p>Thanks for the Great Tips.<br />
Is it affecting commentluv plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 100 top Wordpress tips &#124; FAQPAL Blog</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-disable-html-in-wordpress-comments/comment-page-1/#comment-5039</link>
		<dc:creator>100 top Wordpress tips &#124; FAQPAL Blog</dc:creator>
		<pubDate>Mon, 16 Nov 2009 03:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1103#comment-5039</guid>
		<description>[...] Source&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Source&#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Content Delivery Network via cdn.wpbeginner.com

Served from: www.wpbeginner.com @ 2012-02-09 23:22:30 -->
