<?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: Preventing email spam with the built-in WordPress email obfuscator</title>
	<atom:link href="http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Wed, 09 May 2012 06:53:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: arjun</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-62790</link>
		<dc:creator>arjun</dc:creator>
		<pubDate>Sun, 16 Oct 2011 04:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-62790</guid>
		<description>thank your 4 great info ..</description>
		<content:encoded><![CDATA[<p>thank your 4 great info ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hans</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-61509</link>
		<dc:creator>Hans</dc:creator>
		<pubDate>Sun, 01 Aug 2010 22:37:47 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-61509</guid>
		<description>Hi Miriam,
Thanks for the info, just what I was looking for. You mention that you cannot use this method to obfuscate a generic, non-specific user related email address. But you can: if you enter
&lt;?php echo antispambot(&lt;emailaddress&gt;); ?&gt;
(such as &lt;?php echo antispambot(&quot;info@whatever.com&quot;); ?&gt;, it will just take that specific email address and obfuscate it.
Cheers,
Hans.</description>
		<content:encoded><![CDATA[<p>Hi Miriam,<br />
Thanks for the info, just what I was looking for. You mention that you cannot use this method to obfuscate a generic, non-specific user related email address. But you can: if you enter<br />
&lt;?php echo antispambot(&lt;emailaddress&gt;); ?&gt;<br />
(such as &lt;?php echo antispambot(&#8220;info@whatever.com&#8221;); ?&gt;, it will just take that specific email address and obfuscate it.<br />
Cheers,<br />
Hans.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miriam Schwab</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-60715</link>
		<dc:creator>Miriam Schwab</dc:creator>
		<pubDate>Sun, 20 Dec 2009 13:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-60715</guid>
		<description>&lt;p&gt;@ND thanks for telling us about Private Daddy! I&#039;m going to check that out. Seems like an interesting service.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@ND thanks for telling us about Private Daddy! I&#8217;m going to check that out. Seems like an interesting service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ND</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-60714</link>
		<dc:creator>ND</dc:creator>
		<pubDate>Sun, 20 Dec 2009 12:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-60714</guid>
		<description>I used to have Private daddy on my web site. Now there&#039;s also a WordPress plug-in for the rest of us. It does this automatically: http://www.privatedaddy.com/wordpress</description>
		<content:encoded><![CDATA[<p>I used to have Private daddy on my web site. Now there&#8217;s also a WordPress plug-in for the rest of us. It does this automatically: <a href="http://www.privatedaddy.com/wordpress" rel="nofollow">http://www.privatedaddy.com/wordpress</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Carlson</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-60671</link>
		<dc:creator>Jeremy Carlson</dc:creator>
		<pubDate>Thu, 03 Dec 2009 06:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-60671</guid>
		<description>@csleh: WP 2.8.4 seems to work just fine with the `antispambot` tag. I was using `get_the_author_meta(&#039;user_email&#039;)` for grabbing the address. You might try that...
Contact forms are nice, but a lot of people want to be able to click on a link to email (in part for their own concerns about privacy), and this is pretty much the best solution for that situation.
To grab an author&#039;s email outside of the loop, you need to specify which author, like so:
`get_the_author_meta(&#039;user_email&#039;,2)`
...where &#039;2&#039; is the author&#039;s ID.</description>
		<content:encoded><![CDATA[<p>@csleh: WP 2.8.4 seems to work just fine with the `antispambot` tag. I was using `get_the_author_meta(&#8216;user_email&#8217;)` for grabbing the address. You might try that&#8230;<br />
Contact forms are nice, but a lot of people want to be able to click on a link to email (in part for their own concerns about privacy), and this is pretty much the best solution for that situation.<br />
To grab an author&#8217;s email outside of the loop, you need to specify which author, like so:<br />
`get_the_author_meta(&#8216;user_email&#8217;,2)`<br />
&#8230;where &#8217;2&#8242; is the author&#8217;s ID.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: csleh</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-60148</link>
		<dc:creator>csleh</dc:creator>
		<pubDate>Wed, 15 Jul 2009 18:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-60148</guid>
		<description>unfortunately the tag doesn&#039;t show anything in wp 2.8.1. Use an obfuscator to hide, but a contact form is a better idea.</description>
		<content:encoded><![CDATA[<p>unfortunately the tag doesn&#8217;t show anything in wp 2.8.1. Use an obfuscator to hide, but a contact form is a better idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordCast &#187; Blog Archive &#187; WordCast 21: Purple Knuckles</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-12534</link>
		<dc:creator>WordCast &#187; Blog Archive &#187; WordCast 21: Purple Knuckles</dc:creator>
		<pubDate>Fri, 26 Sep 2008 21:41:39 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-12534</guid>
		<description>[...] Dave&#8217;s slightly helpful pick: WordPress&#8217;s built-in email obfuscator [...]</description>
		<content:encoded><![CDATA[<p>[...] Dave&#8217;s slightly helpful pick: WordPress&#8217;s built-in email obfuscator [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tekkie</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-10470</link>
		<dc:creator>tekkie</dc:creator>
		<pubDate>Mon, 15 Sep 2008 01:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-10470</guid>
		<description>Mac OS X users can also manually use a Dashboard widget called &lt;a href=&quot;http://obfuscatr.flashbit.net&quot; title=&quot;obfuscatr - email address obfuscator&quot; rel=&quot;nofollow&quot;&gt;obfuscatr&lt;/a&gt;. It provides JS or just plain encoding of your email. See the details article at &lt;a href=&quot;http://tekkie.flashbit.net/mac-os/obfuscatr-110-released&quot; title=&quot;obfuscatr 1.1.0 released&quot; rel=&quot;nofollow&quot;&gt;flash tekkie&lt;/a&gt;.  &lt;a href=&quot;http://obfuscatr.flashbit.net&quot; title=&quot;obfuscatr - email address obfuscator&quot; rel=&quot;nofollow&quot;&gt;obfuscatr&lt;/a&gt; was also &lt;a href=&quot;http://tekkie.flashbit.net/mac-os/obfuscatr-featured-in-macworld&quot; title=&quot;obfuscatr featured in Macworld&quot; rel=&quot;nofollow&quot;&gt;featured in MacWorld&lt;/a&gt; Italy of March 2008. 

</description>
		<content:encoded><![CDATA[<p>Mac OS X users can also manually use a Dashboard widget called <a href="http://obfuscatr.flashbit.net" title="obfuscatr - email address obfuscator" rel="nofollow">obfuscatr</a>. It provides JS or just plain encoding of your email. See the details article at <a href="http://tekkie.flashbit.net/mac-os/obfuscatr-110-released" title="obfuscatr 1.1.0 released" rel="nofollow">flash tekkie</a>.  <a href="http://obfuscatr.flashbit.net" title="obfuscatr - email address obfuscator" rel="nofollow">obfuscatr</a> was also <a href="http://tekkie.flashbit.net/mac-os/obfuscatr-featured-in-macworld" title="obfuscatr featured in Macworld" rel="nofollow">featured in MacWorld</a> Italy of March 2008. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bitwire.TV &#124; WordCast 21: Purple Knuckles</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-2724</link>
		<dc:creator>Bitwire.TV &#124; WordCast 21: Purple Knuckles</dc:creator>
		<pubDate>Wed, 16 Jul 2008 04:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-2724</guid>
		<description>[...] Dave&#8217;s slightly helpful pick: WordPress&#8217;s built-in email obfuscator [...]</description>
		<content:encoded><![CDATA[<p>[...] Dave&#8217;s slightly helpful pick: WordPress&#8217;s built-in email obfuscator [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Email Obfuscation &#124; Webmaster-Source</title>
		<link>http://wpgarage.com/good-blogging-practice/preventing-email-spam-with-the-built-in-wordpress-email-obfuscator/#comment-2650</link>
		<dc:creator>WordPress Email Obfuscation &#124; Webmaster-Source</dc:creator>
		<pubDate>Tue, 15 Jul 2008 11:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://wordpressgarage.com/?p=336#comment-2650</guid>
		<description>[...] didn&#8217;t know this until WordPress Garage pointed it out, but it seems that WordPress has a built-in obfuscation function. It&#8217;s called antispambot(). [...]</description>
		<content:encoded><![CDATA[<p>[...] didn&#8217;t know this until WordPress Garage pointed it out, but it seems that WordPress has a built-in obfuscation function. It&#8217;s called antispambot(). [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

