上版权链接主要是为了防止被一些贱人恶意采集的,有的采集是直接抓取RSS,所以编辑single.php的方法并不能解决这个问题,所以我们有必要给feed也加上版权链接,于是就有此文了。
把下面的代码加到funtions.php中即可。
[cc lang="php"]
function bigfa_copyright($content) {
if( is_single() && is_feed() ){
$content.= '
转载请注明:'.get_bloginfo('name').' » '.get_the_title().'
';
}
return $content;
}
add_filter('the_content','bigfa_copyright');
[/cc]
发表评论