文本它只是纯文本,就像它保存在数据库中一样。
Wordpress使用函数更改段落的换行符wpautop, 通过过滤器the_content
和the_excerpt
.
如果需要删除wpautop
行为,您可以通过在主题的函数中执行此操作来删除过滤器。php:
remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );
还可以添加您自己的自定义功能:
add_filter( \'the_content\', \'my_custom_format\' );
add_filter( \'the_excerpt\', \'my_custom_format\' );
function my_custom_format ($text) {
// do something with $text
return $text;
}