Version Description
- Effects now also page, post and comment excerpts
Download this release
Release Info
Developer | tillkruess |
Plugin | Email Address Encoder |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- email-address-encoder.php +3 -3
- readme.txt +15 -4
email-address-encoder.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
3 |
Plugin Name: Email Address Encoder
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/email-address-encoder/
|
5 |
-
Description: A lightweight plugin to protect
|
6 |
-
Version: 1.0
|
7 |
Author: Till Krüss
|
8 |
Author URI: http://tillkruess.com/
|
9 |
License: GPLv3
|
@@ -33,7 +33,7 @@ License: GPLv3
|
|
33 |
* Register filters to encode exposed email addresses in
|
34 |
* posts, pages, comments & widgets.
|
35 |
*/
|
36 |
-
foreach (array('the_content', 'widget_text', 'comment_text') as $filter) {
|
37 |
add_filter($filter, 'eae_encode_emails', 1000);
|
38 |
}
|
39 |
|
2 |
/*
|
3 |
Plugin Name: Email Address Encoder
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/email-address-encoder/
|
5 |
+
Description: A lightweight plugin to protect email addresses from email-harvesting robots by encoding them into decimal and hexadecimal entities.
|
6 |
+
Version: 1.0.1
|
7 |
Author: Till Krüss
|
8 |
Author URI: http://tillkruess.com/
|
9 |
License: GPLv3
|
33 |
* Register filters to encode exposed email addresses in
|
34 |
* posts, pages, comments & widgets.
|
35 |
*/
|
36 |
+
foreach (array('the_content', 'the_excerpt', 'widget_text', 'comment_text', 'comment_excerpt') as $filter) {
|
37 |
add_filter($filter, 'eae_encode_emails', 1000);
|
38 |
}
|
39 |
|
readme.txt
CHANGED
@@ -3,13 +3,13 @@ Contributors: tillkruess
|
|
3 |
Tags: antispam, anti spam, spam, email, e-mail, mail, spider, crawler, harvester, robots, spambot, block, obfuscate, obfuscation, encode, encoder, encoding, encrypt, encryption, protect, protection
|
4 |
Requires at least: 2.0
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 1.0
|
7 |
|
8 |
-
A lightweight plugin to protect
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
A lightweight plugin to protect plain email addresses from email-harvesting robots by encoding them into decimal and hexadecimal entities. Has effect on the
|
13 |
|
14 |
|
15 |
== Usage ==
|
@@ -25,11 +25,22 @@ For detailed installation instructions, please read the [standard installation p
|
|
25 |
|
26 |
1. Upload the `/email-address-encoder/` directory and its contents to `/wp-content/plugins/`.
|
27 |
2. Login to your WordPress installation and activate the plugin through the _Plugins_ menu.
|
28 |
-
3. Done. This plugin
|
29 |
|
30 |
|
31 |
== Changelog ==
|
32 |
|
|
|
|
|
|
|
|
|
33 |
= 1.0 =
|
34 |
|
35 |
* Initial release
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Tags: antispam, anti spam, spam, email, e-mail, mail, spider, crawler, harvester, robots, spambot, block, obfuscate, obfuscation, encode, encoder, encoding, encrypt, encryption, protect, protection
|
4 |
Requires at least: 2.0
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 1.0.1
|
7 |
|
8 |
+
A lightweight plugin to protect email addresses from email-harvesting robots by encoding them into decimal and hexadecimal entities.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
A lightweight plugin to protect plain email addresses and mailto links from email-harvesting robots by encoding them into decimal and hexadecimal entities. Has effect on the posts, pages, comments, excerpts and text widgets. No UI, no shortcode, no JavaScript — just simple spam protection.
|
13 |
|
14 |
|
15 |
== Usage ==
|
25 |
|
26 |
1. Upload the `/email-address-encoder/` directory and its contents to `/wp-content/plugins/`.
|
27 |
2. Login to your WordPress installation and activate the plugin through the _Plugins_ menu.
|
28 |
+
3. Done. This plugin works without a no user interface or configuration options.
|
29 |
|
30 |
|
31 |
== Changelog ==
|
32 |
|
33 |
+
= 1.0.1 =
|
34 |
+
|
35 |
+
* Effects now also page, post and comment excerpts
|
36 |
+
|
37 |
= 1.0 =
|
38 |
|
39 |
* Initial release
|
40 |
+
|
41 |
+
|
42 |
+
== Upgrade Notice ==
|
43 |
+
|
44 |
+
= 1.0.1 =
|
45 |
+
|
46 |
+
Effects now also page, post and comment excerpts.
|