<?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/"
		>
<channel>
	<title>Comments on: WordPress Tip: Remove nofollow Attributes from Post Content</title>
	<atom:link href="http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/feed/" rel="self" type="application/rss+xml" />
	<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/</link>
	<description>Take your WordPress skills to the next level.</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:22:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3289</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Sun, 07 Feb 2010 04:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3289</guid>
		<description>It&#039;s actually easier to just add the code, but your plugin is great and provides lots of additional benefits for the user. Recommended.</description>
		<content:encoded><![CDATA[<p>It&#8217;s actually easier to just add the code, but your plugin is great and provides lots of additional benefits for the user. Recommended.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3288</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Sun, 07 Feb 2010 04:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3288</guid>
		<description>They are attributes placed on the anchor tag in various parts of WordPress. They are used to communicate to search engines that the link is not necessarily &quot;vouched for&quot; by the author. WordPress includes them in comments by default. You don&#039;t need to remove them unless you understand them and know what you are doing. There is no need to remove them if you do not want to.</description>
		<content:encoded><![CDATA[<p>They are attributes placed on the anchor tag in various parts of WordPress. They are used to communicate to search engines that the link is not necessarily &#8220;vouched for&#8221; by the author. WordPress includes them in comments by default. You don&#8217;t need to remove them unless you understand them and know what you are doing. There is no need to remove them if you do not want to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michele</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3278</link>
		<dc:creator>michele</dc:creator>
		<pubDate>Thu, 04 Feb 2010 14:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3278</guid>
		<description>Good article but I would like to suggest you using one of my plugin &lt;a href=&quot;http://www.michelem.org/wordpress-plugin-nofollow-free/&quot; rel=&quot;nofollow&quot;&gt;NoFollow Free&lt;/a&gt; heavily customizable and very simple to use (just install and go)</description>
		<content:encoded><![CDATA[<p>Good article but I would like to suggest you using one of my plugin <a href="http://www.michelem.org/wordpress-plugin-nofollow-free/" rel="nofollow">NoFollow Free</a> heavily customizable and very simple to use (just install and go)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Euricozen</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3277</link>
		<dc:creator>Euricozen</dc:creator>
		<pubDate>Thu, 04 Feb 2010 12:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3277</guid>
		<description>what is the nofollow?
what it is use for? and why do i need to remove them?</description>
		<content:encoded><![CDATA[<p>what is the nofollow?<br />
what it is use for? and why do i need to remove them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bijayani</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3269</link>
		<dc:creator>Bijayani</dc:creator>
		<pubDate>Wed, 03 Feb 2010 12:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3269</guid>
		<description>Hi,

I happened to see your post find it quite informative. I would like to share a link where a software engineer has shared a tip on “PHP functions str_ireplace and str_replace”.

str_ireplace and  str_replace  both functions take 3 parameters.
 
Parameter1 : The input string which you want to search
Parameter2 : The string which you want to over write on the search string
Parameter3 : The original String
 
What is the difference between str_ireplace and  str_replace
 The str_replace function is a case-sensitive which means that it replaces the string that exactly matches the string exactly. It means that if you call the function to replace the string &quot;MFS&quot; with &quot;abc&quot;, the function would not replace strings which consist of  &quot;mFS&quot;,&quot;mfs&quot;,&quot;MfS&quot; because it wouldn&#039;t consider them a complete match.  
However, the str_ireplace function php is not sensitive-rule and will treat &quot;MFS&quot;,&quot;mfs&quot;,&quot;MfS&quot; ..... all combination as a single match. 

For more detail, here is the link:
http://www.mindfiresolutions.com/PHP-functions-strireplace-and-strreplace-125.php

Hope you find it useful and of assistance.

Thanks,
Bijayani</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I happened to see your post find it quite informative. I would like to share a link where a software engineer has shared a tip on “PHP functions str_ireplace and str_replace”.</p>
<p>str_ireplace and  str_replace  both functions take 3 parameters.</p>
<p>Parameter1 : The input string which you want to search<br />
Parameter2 : The string which you want to over write on the search string<br />
Parameter3 : The original String</p>
<p>What is the difference between str_ireplace and  str_replace<br />
 The str_replace function is a case-sensitive which means that it replaces the string that exactly matches the string exactly. It means that if you call the function to replace the string &#8220;MFS&#8221; with &#8220;abc&#8221;, the function would not replace strings which consist of  &#8220;mFS&#8221;,&#8221;mfs&#8221;,&#8221;MfS&#8221; because it wouldn&#8217;t consider them a complete match.<br />
However, the str_ireplace function php is not sensitive-rule and will treat &#8220;MFS&#8221;,&#8221;mfs&#8221;,&#8221;MfS&#8221; &#8230;.. all combination as a single match. </p>
<p>For more detail, here is the link:<br />
<a href="http://www.mindfiresolutions.com/PHP-functions-strireplace-and-strreplace-125.php" rel="nofollow">http://www.mindfiresolutions.com/PHP-functions-strireplace-and-strreplace-125.php</a></p>
<p>Hope you find it useful and of assistance.</p>
<p>Thanks,<br />
Bijayani</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3268</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Wed, 03 Feb 2010 01:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3268</guid>
		<description>Yes, as explained in the article, the second method will remove the &lt;code&gt;nofollow&lt;/code&gt; attribute from comments. WordPress adds the &lt;code&gt;external&lt;/code&gt; attribute as well.</description>
		<content:encoded><![CDATA[<p>Yes, as explained in the article, the second method will remove the <code>nofollow</code> attribute from comments. WordPress adds the <code>external</code> attribute as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3267</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Wed, 03 Feb 2010 01:07:29 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3267</guid>
		<description>Duly noted. Thanks for the reminder :)</description>
		<content:encoded><![CDATA[<p>Duly noted. Thanks for the reminder :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3262</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Mon, 01 Feb 2010 22:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3262</guid>
		<description>I&#039;m not sure why WordPress insists in maintaining the nofollow comment attribute as its default.  This filtering you describe would also remove the nofollow attribute in comment replies as well wouldn&#039;t it?  I noticed in your source code that you have the nofollow attribute in your comment replies.  Also interesting use of &#039;external nofollow&#039; for your comments here ;)</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure why WordPress insists in maintaining the nofollow comment attribute as its default.  This filtering you describe would also remove the nofollow attribute in comment replies as well wouldn&#8217;t it?  I noticed in your source code that you have the nofollow attribute in your comment replies.  Also interesting use of &#8216;external nofollow&#8217; for your comments here ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tari Akpodiete</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3261</link>
		<dc:creator>Tari Akpodiete</dc:creator>
		<pubDate>Mon, 01 Feb 2010 19:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3261</guid>
		<description>great tip, guys. thanks. i know many following your blog are sophisticated with WP, but not everyone knows what &#039;no follow&#039; is and why it might be desireable to remove it. or not.</description>
		<content:encoded><![CDATA[<p>great tip, guys. thanks. i know many following your blog are sophisticated with WP, but not everyone knows what &#8216;no follow&#8217; is and why it might be desireable to remove it. or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://digwp.com/2010/02/remove-nofollow-attributes-from-post-content/#comment-3260</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Mon, 01 Feb 2010 18:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=1352#comment-3260</guid>
		<description>I think there are most likely other ways of disabling the &lt;code&gt;nofollow&lt;/code&gt; attribute in WordPress. &lt;a href=&quot;http://perishablepress.com/press/2007/09/23/much-ado-about-nofollow-the-perishable-press-dofollow-series/&quot; title=&quot;Much ado about nofollow: The Perishable Press Dofollow Series&quot; rel=&quot;nofollow&quot;&gt;Here are about 10 of them&lt;/a&gt;, plus lots of additional information that should help answer some of your questions.</description>
		<content:encoded><![CDATA[<p>I think there are most likely other ways of disabling the <code>nofollow</code> attribute in WordPress. <a href="http://perishablepress.com/press/2007/09/23/much-ado-about-nofollow-the-perishable-press-dofollow-series/" title="Much ado about nofollow: The Perishable Press Dofollow Series" rel="nofollow">Here are about 10 of them</a>, plus lots of additional information that should help answer some of your questions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

