有時(shí)候,你可能需要在所有文章底部添加自定義內(nèi)容,可以將下面的代碼添加到主題的 functions.php 文件中:
//在所有文章底部添加自定義內(nèi)容 function add_after_post_content($content) { if(!is_feed() && !is_home() && is_singular() && is_main_query()) { $content .= '你需要添加的自定義內(nèi)容'; } return $content; } add_filter('the_content', 'add_after_post_content'); |
第 3 行代碼使用了條件標(biāo)簽,禁止Feed和首頁輸出自定義內(nèi)容。