在進行 WordPress 主題開發(fā)的時候,使用 the_excerpt() 調用出來的文章摘要是不支持 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 代碼展示出來。
更多信息請查看IT技術專欄