adamdell
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [wp-Typography] WP function “antispambot” not working with pluginThank you! Now it works with Email Address Encoder and priority set to 10000. Before I only tried 8000 that was too low.
Forum: Plugins
In reply to: [wp-Typography] WP function “antispambot” not working with pluginI see, thank you!
Could it be a solution if I add the code
function wpcodex_hide_email_shortcode( $atts , $content = null ) { if ( ! is_email( $content ) ) { return; } return '<a href="mailto:' . antispambot( $content ) . '">' . antispambot( $content ) . '</a>'; } add_shortcode( 'email', 'wpcodex_hide_email_shortcode' );into a file of your plugin so that it runs after the plugin’s parser?
https://ww.wp.xz.cn/plugins/email-address-encoder/ also doesn’t help.
Forum: Plugins
In reply to: [wp-Typography] WP function “antispambot” not working with pluginYes, the shortcode [email] example.
This doesn’t help. I’ve also tried to add the “a” element to the ignore list at the settings of your plugin. This also didn’t help.
Viewing 3 replies - 1 through 3 (of 3 total)