Wordpress - 空p标签

时间:2013-03-18 08:36:18

标签: wordpress tags

我得到了空的p标签,我无法用jQ删除,也无法在源代码中看到它们。它们是通过移动主题添加的,只能通过浏览器工具查看。我不认为jQ正在添加它们......

http://war-mobile.h2client.com/pillar/residential/?wpmp_switcher=mobile

根据“我们提供,正好在白色顶部边界下。我知道如何解决问题,就像我上面所做的那样,([raw])但我很好奇为什么会这样?”

1 个答案:

答案 0 :(得分:1)

将以下内容添加到主题中的functions.php文件中:

add_filter('the_content', 'remove_empty_p', 20, 1);
function remove_empty_p($content){
$content = force_balance_tags($content);
return preg_replace('#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content);
}