wordpress博客文章首行缩进


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

//文章首行缩进
function Bing_text_indent($text){
    $return = str_replace('

', '

$text); return $return; } add_filter('the_content','Bing_text_indent');