在编写WordPress帖子时,在可视模式下,在文本编辑器中显示换行符,但在HTML模式下只有 & nbsp not BR tag。
如何在每个换行符处添加BR标记,而不是默认情况下添加& nbsp?
答案 0 :(得分:1)
您可以在functions.php中使用这些代码来删除删除线制动器的过滤器
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
function my_tinymce_config( $init ) {
$init['remove_linebreaks'] = false;
$init['convert_newlines_to_brs'] = true;
$init['remove_redundant_brs'] = false;
return $init;
}
add_filter('tiny_mce_before_init', 'my_tinymce_config');
答案 1 :(得分:1)
你可以用php的用户函数nl2br()。 例如:
nl2br(get_the_content());
答案 2 :(得分:0)
如果您想在Wordpress内容屏幕中添加换行符,可以通过为<br />
标记分配一个类来实现,即;
<br class="break" />
Wordpress不会剥离它。