许多博客自动在日志最后显示一些内容,比如邀请读者订阅RSS。这些内容一般是通过硬编码添加的。为什么不用functions.php来做?并且更换模板不会对此产生影响。
要实现这一功能,你需要在functions.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://feeds2.feedburner.com/WpRecipes'>RSS feed</a> and never miss a recipe!</p>"; $content.= "</div>"; } return $content; } add_filter ('the_content', 'insertFootNote');
大功告成!