我看到人们通过将以下内容添加到函数文件中来删除wordpress中的br标签:
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
我希望这只影响一个页面或页面模板。有什么好办法吗?比如在functions.php?
中使用模板名称比较编辑:
例如,我尝试了以下内容而没有在我的主题中使用functions.php结果:
if( is_page_template("template_file_name.php") ){
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
}
答案 0 :(得分:0)
如果您只想删除所有br
您可以尝试使用css定位该页面吗? 这将提供最大的灵活性
.page-id-123 .content br { display:none; }