wordpress 去掉自动添加的 br 标签

Mr.Wu 4,883 0 正在检测是否收录...

现在博客越来越美美哒了,开心[aru_41]

可是新的问题又出现了,发现文章有时候自动添加了 br 换行标签

添加就添加吧,没啥大不了,可是丫的添加在了我图片的末尾[aru_24]

我本身就已经给图片加了行间距,然后他又自动加一个

换行符,这就导致图片下方内容会空出来一大截的感觉,严重影响美观,这不符合处女座的我的追求!

行吧,不多哔哔,安排它~

将下方代码添加到主题的 function.php 中:

/*
    去除文章自动添加br换行标签
*/
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

function wpse_wpautop_nobr( $content ) {
    return wpautop( $content, false );
}

add_filter( 'the_content', 'wpse_wpautop_nobr', 12 );
add_filter( 'the_excerpt', 'wpse_wpautop_nobr', 12 );

打赏
发表评论 取消回复
表情 图片 链接 代码

分享
微信
微博
QQ