>
Download This Plugin | |
Download Elegant Themes | |
Name | Email Obfuscate Shortcode |
Version | 2.0 |
Author | khromov |
Rating | 84 |
Last updated | 2014-04-16 10:05:00 |
Downloads |
4187
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Email Obfuscate Shortcode plugin added 4 bytes of resources to the Home page and 17 bytes of resources to the sample Post page.
Email Obfuscate Shortcode plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Email Obfuscate Shortcode plugin ads no tables to your Wordpress blog database.Obfuscate your email address or other sensitive information with a shortcode to prevent harvesting of your data.
Version 2.0 includes an improved way of displaying the email without relying on JavaScript document.write();
Usage
Basic usage
[email-obfuscate email="bob@example.com"]
Setting custom link text
[email-obfuscate email="bob@example.com" link_title="Email Bob!"]
*Setting custom link title attribute"
[email-obfuscate email="bob@example.com" tag_title="Email Bob!"]
Using every available setting (this example shows their default values)
[email-obfuscate email="bob@example.com" linkable="1" link_title="" use_htmlentities="1" use_noscript_fallback="1" noscript_message="Please enable JavaScript to see this field."]
Usage from a template or plugin
Below is a snippet that you can use in any template or plugin to apply the same obfuscation to an email as using the shortcode:
if(function_exists('eos_obfuscate')) { echo eos_obfuscate(array('email' => $email, 'link_title' => 'Email Bob!')); } else { echo $email; }
If the plugin is not enabled, the email address will just pass through and output in cleartext.