在進(jìn)行 wordpress 主題開(kāi)發(fā)的時(shí)候,使用 the_excerpt() 調(diào)用出來(lái)的文章摘要是不支持 html 標(biāo)簽的,但我們還是可以通過(guò) filter 的方法來(lái)讓文章摘要支持 html 標(biāo)簽,可以在主題的 functions.php 里加入以下代碼。
add_filter('the_excerpt', 'excerpt_force_balance_tags');
function excerpt_force_balance_tags ($output) {
return $output = force_balance_tags($output);;
}
如果真的需要讓文章摘要支持 html 標(biāo)簽,建議加上條件判斷,不要在 rss 中將文章摘要里的 html 代碼展示出來(lái)。