remove empty

tags from wordpress shortcodes via a php functon

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

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

    I found that it works if you specify 10 as the priority; no other number will work.

提交回复
热议问题