wordpress博客文章首行缩进

将下面的代码添加到主题目录 functions.php 中即可!

//文章首行缩进
function Bing_text_indent($text){
    $return = str_replace('<p>', '<p style="text-indent:2em;"',$text);
    return $return;
}
add_filter('the_content','Bing_text_indent');

 

posted @ 2022-03-14 22:34  z9m8r8  阅读(80)  评论(0编辑  收藏  举报