有的主题自带了这种功能,有的没有,没有的话,将下面这串代码加入到functions.php文件中最后一个>前即可。
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'); /*