remove empty

tags from wordpress shortcodes via a php functon

前端 未结 7 1822
余生分开走
余生分开走 2021-02-13 10:20

Looking for a php function (non-jQuery or wpautop modification) approach to remove

from within wordpress.

I tried this but it does not w

7条回答
  •  孤独总比滥情好
    2021-02-13 11:14

    Try inserting this code in your functions.php file:

    remove_filter( 'the_content', 'wpautop' );
    add_filter( 'the_content', 'wpautop', 99 );
    add_filter( 'the_content', 'shortcode_unautop', 100 );
    

提交回复
热议问题