wordpress怎麼自動在正文內容後加入內容
很多時候,你需要在文章內容後面添加一些信息,例如訂閱,文章分享,收藏和Creative Commons協議聲明等。
要在文章尾端自動加入內容的話,只需要在主題的function.php#裡加入程式碼:
function insertFootNote($content) { if(!is_feed() && !is_home()) { $content.= "<div class='subscribe'>"; $content.= "<h4>Enjoyed this article?</h4>"; $content.= "<p>Subscribe to our <a href='http://feed.php.cn/'>RSS feed</a> and never miss a recipe!</p>"; $content.= "</div>"; } return $content; } add_filter ('the_content', 'insertFootNote');
以上範例的效果是在每篇文章的尾部自動新增訂閱提示。
推薦教學:WordPress教學
以上是wordpress怎麼自動在內文內容後加入內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!