有时候站长需要WordPress文章正文顶端或者末尾放入固定的内容,比如加个文字广告、版权声明之类的,我们如果每次都手动添加会比较麻烦,所以还是修改WordPress函数模板functions.php来添加代码比较方便。
在WordPress正文顶端或者末尾放入固定的文字内容:
将代码添加到当前主题functions.php模板的最后,并修改相应的内容。
function ks_content_insert( $return = 0 ) {
// 放入的内容
$str.= "<div class='same'>";
$str.= "<h4>这里是标题</h4>";
$str.= "<p>关注:<a href='http://www.chukuangren.com/' rel='external nofollow' target='_blank'>楚狂人</a></p>";
$str.= "</div>";
if ($return) { return $str; } else { echo $str; }
}
function ks_content_filter($content) {
if(!is_feed() && !is_home() && is_singular() && is_main_query()) {
$content .= ks_content_insert(0);// 0在正文上面
//$content .= ks_content_insert(1);//1在正文下面
}
return $content;
}
add_filter('the_content','ks_content_filter');
注:本文提供的方法可以方便地让你选择是显示在正文顶端或者末尾,也可以同时显示。