让每段首行自动空两格
解决文章段落首行不能自动空格的问题
操作方法
- 01
找到主题的style.css文件,搜索类似“.****** p”的代码,大括号中添加:“text-indent:2em;”
- 02
也可以在“functions.php”文件的最后一个 ?> 前添加代码: <!–首行缩进begin–> function Bing_text_indent($text) { $return = str_replace('<p', '<p',$text); return $return; } add_filter('the_content',#0000ff;">'Bing_text_indent'); <!--END--> 具体可以参考http://www.twgdh.cn/seo-1/821.html
赞 (0)