WordPress文章段落首行缩进

Author: 陌小雨Date: 2015-02-05View: 204

有的主题自带了这种功能,有的没有,没有的话,将下面这串代码加入到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');
/*