Wordpress-从内容()中删除带有(nbsp)的空段落标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-从内容()中删除带有(nbsp)的空段落标记相关的知识,希望对你有一定的参考价值。
Remove Wordpress empty paragraphs form the_content() function.
add_filter('the_content', 'remove_empty_tags_recursive', 20, 1); function remove_empty_tags_recursive ($str, $repto = NULL) { $str = force_balance_tags($str); //** Return if string not given or empty. return $str; //** Recursive empty html tags. //** Pattern written by Junaid Atari. '~s?<p>(s| )+</p>s?~', //** Replace with nothing if string empty. //** Source string $str );}
以上是关于Wordpress-从内容()中删除带有(nbsp)的空段落标记的主要内容,如果未能解决你的问题,请参考以下文章