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