實(shí)現(xiàn)圖文混排文章首行縮進(jìn)兩字符,對(duì)圖片無影響。
- 轉(zhuǎn)載來源:詳情
以下代碼均為2021主題用,可能需要自行適配主題。
首行縮進(jìn)
.entry-content p{/*段落*/
text-indent: 2em;/*首行縮進(jìn)*/
}
讓圖片div塊化,避免繼承段落縮進(jìn)
.entry-content img{
display: block;/*div塊化,避免首行縮進(jìn)影響*/
}
PHP實(shí)現(xiàn)
在主題根目錄下的functions.php
文件中的<?php
下添加以下代碼并保存。
//文章首行縮進(jìn)
function Bing_text_indent($text){
$return = str_replace('<p', '<p style="text-indent:2em;"',$text);
return $return;
}
add_filter('the_content','Bing_text_indent');