wordpress 自动在正文内容后添加内容

时间:2016-04-10
但在制作主题的时候,每个用户的需求都不同,而且你也不可能在文章下方添加太多的内容。因此让用户能自定义自己需要的内容是最好的方案。
要在文章尾部自动添加内容的话,只需要在主题的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部分。
上一条:z-blog的目录、留言、引用标签教程 下一条:wordpress 静态化设置 windows主机伪静态去除index.php方法

相关文章

最新文章