remove empty

tags from wordpress shortcodes via a php functon

前端 未结 7 1864
余生分开走
余生分开走 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:09

    You should increase the priority of the filter.

    This should work

    add_filter('the_content', 'cleanup_shortcode_fix', 1);
    

提交回复
热议问题