tags from wordpress shortcodes via a php functon-孤独总比滥情好的回答
tags from wordpress shortcodes via a php functon
Looking for a php function (non-jQuery or wpautop modification) approach to remove from within wordpress.
I tried this but it does not w
Try inserting this code in your functions.php file:
functions.php
remove_filter( 'the_content', 'wpautop' ); add_filter( 'the_content', 'wpautop', 99 ); add_filter( 'the_content', 'shortcode_unautop', 100 );