在互联网资源泛滥的时代,我们都知道文章加版权的最终目的,是为了给转载者一个明确的转载注明方式。善意的转载者既使没有看到版权信息也会主动自觉地添加上原文出处,然而有很多以采集为主的站都是通过 RSS 输出来获取文章内容的,因此我们需要在文章和Feed中添加版权信息。
很多人都说在文章中增加了版权信息后,并不能在Feed中增加,产生这种情况的原因是你操作失误,在这里,偶米工作室通过另外一种方式,为你的文章和Feed同时增加版权信息。操作很容易,你只需要找到主题目录下的functions.PHP,在最后一个”?>”之前,插入如下代码:
function Feed_copyright($content) {
if(is_single() or is_Feed()) {
$content.= '<div>转载请注明来源:<a rel="bookmark" title="'.get_the_title().'" href="http://www.veryhuo.com/'.get_permalink().'">'.get_the_title().'</a></div>';
$content.= '<div>本文链接地址:<a rel="bookmark" title="'.get_the_title().'" href="http://www.veryhuo.com/'.get_permalink().'">'.get_permalink().'</a></div>';
$content.= '<div>订阅本站:<a title="最火软件站" href="http://www.veryhuo.com/data/RSSmap.html">http://www.veryhuo.com/</a></div>';
$content.= "</blockquote>";
}
return $content;
}
add_filter ('the_content','Feed_copyright');