要在文章尾部自动添加内容的话,只需要在主题的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.imbolo.com/'>RSS feed</a> and never miss a recipe!</p>";
$content.= "</div>";
}
return $content;
}
add_filter ('the_content', 'insertFootNote');
以上例子的效果是在每篇文章的尾部自动添加订阅提示。
需要让用户自定义FootNote的话,可以在function.php里设置一个自定义变量$custom_footnote,用来代替以上代码的HTML部分。