WordPress怎么自动在正文内容后添加内容 WordPress网站建站教程

奈斯特

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怎么自动在正文内容后添加内容的详细内容,更多请关注本站其它相关文章!

文章版权声明:除非注明,否则均为奈斯博客原创文章,转载或复制请以超链接形式并注明出处。

发表评论

表情:
验证码
评论列表 (暂无评论,330人围观)

还没有评论,来说两句吧...

目录[+]