Title: Plugin encodes image source including @
Last modified: August 22, 2016

---

# Plugin encodes image source including @

 *  Resolved [pshemek](https://wordpress.org/support/users/emmek/)
 * (@emmek)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/plugin-encodes-image-source-including/)
 * Hello,
 * the plugin encodes my Retina images source, like
    `http://mysite.com/ce/wp-content/
   uploads/2014/06/myimage-300x300@2x.png`
 * The image works properly but it’s a bit annoying to see that in source code.
 * [https://wordpress.org/plugins/email-address-encoder/](https://wordpress.org/plugins/email-address-encoder/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Till Krüss](https://wordpress.org/support/users/tillkruess/)
 * (@tillkruess)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/plugin-encodes-image-source-including/#post-5338902)
 * Yes, that’s the problem with regular expressions, but you can double check all
   found strings and only have the “real” email addresses encoded:
 *     ```
       add_filter( 'eae_method', function() {
       	return 'custom_eae_encode_method';
       } );
   
       function custom_eae_encode_method( $string ) {
   
       	if ( preg_match( '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/', $string ) ) {
       		return eae_encode_str( $string );
       	}
   
       	return $string;
   
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Plugin encodes image source including @’ is closed to new replies.

 * ![](https://ps.w.org/email-address-encoder/assets/icon-256x256.jpg?rev=970206)
 * [Email Address Encoder](https://wordpress.org/plugins/email-address-encoder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/email-address-encoder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/email-address-encoder/)
 * [Active Topics](https://wordpress.org/support/plugin/email-address-encoder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/email-address-encoder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/email-address-encoder/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Till Krüss](https://wordpress.org/support/users/tillkruess/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/plugin-encodes-image-source-including/#post-5338902)
 * Status: resolved