Remove esc_html from plugins PHP
-
Is it possible to remove esc_html from the output so any HTML links added to a custom field, link in the HTML output?
example.com
Here’s is my PHP code:esc_html( get_post_meta($post->ID, $key, true) ) );
The problem i have is there’s no filter added to the PHP so i can’t modify the output.
Maybe there’s a jQuery solution or something.
When i modify the code in the plugin it works but that’s not future proof.
get_post_meta($post->ID, $key, true) );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove esc_html from plugins PHP’ is closed to new replies.