wordpress怎么自动在正文内容后添加内容
很多时候,你都需要在文章内容后面添加一些信息,例如订阅,文章分享,收藏和Creative Commons协议声明等。
要在文章尾部自动添加内容的话,只需要在主题的function.php里添加一下代码:
function insertFootNote($content) { if(!is_feed() && !is_home()) { $content.= ""; $content.= "Enjoyed this article?
"; $content.= "Subscribe to our RSS feed and never miss a recipe!
"; $content.= ""; } return $content; } add_filter ('the_content', 'insertFootNote');
以上例子的效果是在每篇文章的尾部自动添加订阅提示。
发表评论