WP Email Encoder Bundle Plugin

Proteja su correo electrónico en el sitio web de correo electrónico con WordPress Encoder Plugin Bundle. ¿No tienes un sitio de WordPress, puedes colocar el Email Encoder su correo electrónico en el código de seguridad para su sitio web.
Características
- varios métodos para la encriptación de mensajes de correo electrónico
- mensajes de correo electrónico automáticamente la codificación de contenido
- contenido y la función de código de plantilla para crear un enlace mailto codificados
- Ponga una forma codificar fácilmente en su propio sitio
- fácil para los programadores agregar métodos adicionales
Ejemplo
Una dirección de correo electrónico está en el sitio convertido en un código ilegible para spam bots. Ejemplo:
es:
Descargar
Descargue la última versión de la WordPress Plugin Directorio o la búsqueda de "Correo electrónico Encoder paquete" en el Panel de administración de WordPress.
Licencia
Código cae bajo las dos de la GPL y la licencia del MIT.























Hi, Thanks for the plugin! I might suggest an addition:
// also filter widgets
add_filter( ‘widget_text’, array( &$this, ‘encode_filter’ ), 100 );
Good suggestion Jim!
I will add the filter for widgets.
HAllo,
bei mir funzt die DArstellung seit Update auf 3.1.2 nicht mehr.
Ist das mein Fehler?
Ist bei 3 Blog´s so, mit verschiedenen Providern.
Gruß
Hi Victor,
LOVE the plugin. I’m experiencing an issue however with my dashboard when the plugin is activated. None of the dashboard boxes will open/close.
Have you experienced this or had any other reports of it? Any pointers on how to fix it?
Dave
Seems to be working GREAT! I did remove the language=”javascript” line as I am using HTML5. Thanks!
@David: I had one more report of the dashboard toggle issue. Untill now, I haven’t succeed in reproducing the problem on my wordpress installations. Do you have any more details? (version of wp and plugin, your plugin options etc)
@Pete: Thanks!
About the
language="javascript", that should have beentype="text/javascript"(which is optional in html5). Will be solved in the next version.A bit of a noob question, but how do I know if the plugin works (using WP 3.2)? And, what happens if the user doesn’t have JS installed?
The output HTML is as follows:
/*afe.yli/n\”<c:r-";MI="D:4E?:668C5:@?70H?@B1C42G6@76@7<=E05DA:9";OT="";for(j=0;j*/
*protected email*
Uh! All the above code has vanished, hopefully you get the idea nonetheless.
Hello John, if that’s the output than the plugin works. If you use a JavaScript enconding method and JS is disabled in the browser, only the text *protected email* will be shown (instead of the mailto link).
Thank you for the prompt reply! Would you recommend using another form of encoding in the event of JS being disabled? Or do most people have JS enabled as default these days?
Maybe a few percent has disabled JS.
Hi,
your protection crashed “my” image rotation so I took a look into it.
just a little change in
email-encoder-bundle/methods/ascii.php:
return ‘(function() {‘
. ‘var ML=”‘. $MailLettersEnc .’”;’
. ‘var MI=”‘. $MailIndexes .’”;’
. ‘var OT=”";’
. ‘for(var j=0;j<MI.length;j++){'
. 'OT+=ML.charAt(MI.charCodeAt(j)-48);'
. '}document.write(OT);})()*protected email*’;
}
Now it’s an anonymous function with local variables –> much safer (which this image rotation should also use, but unfortunately doesn’t).
Hello Victor,
great plugin. I would like it to also encode emails from bbpress 2 plugin. I tried adding filters like,
add_filter( ‘bbp_reply_content’, array( $this, ‘_filter_callback’ ), $priority );
but found they had no effect.
I would also love to know how to make it encode emails in All in 1 calendar plugin without having to hack the plugin code. Is this possible?
Correction: emails in All in 1 calendar plugin are being automatically encoded.
So encoding emails in bbpress2 plugin is my only request.
After testing I found the following filters will cause email addresses in BBPress plugin topics and replies to be encoded.
add_filter( ‘bbp_get_reply_content’, array( $this, ‘_filter_callback’ ), $priority );
add_filter( ‘bbp_get_topic_content’, array( $this, ‘_filter_callback’ ), $priority );
It would be great if you would include these filters in your plugin.
Hello Johny and Mick,
Thanks for your input. I will put it on the todo list for next release.
All-In-One Event Calender Filter (ai1ec)
Im no expert on this but
add_filter( ‘the_content’, array( &$this, ‘_filter_callback’ ), PHP_INT_MAX – 1 );
is working for me.