禁用wpautop,保留换行符

时间:2013-05-08 作者:Pier

如何禁用自动段落标记,但保留换行符?

我已使用此选项删除wpautop:

remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );
但是文本中没有更多的换行符。

1 个回复
SO网友:Pier

这是完整的解决方案。

首先在函数中禁用wpautop。php

remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );
然后用nl2br(一个标准PHP函数)解析您的内容/摘录。

add_filter( \'the_content\', \'nl2br\' );
add_filter( \'the_excerpt\', \'nl2br\' );

结束

相关推荐