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');
不忘初心,方得始终。
将下面的代码添加到主题目录 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');