网站防采集是切实想好好做网站的站长都需要处理的,防参加的办法有很多种,例如在网站内加入JS实现防止采集等,下面给大家介绍的是wordpress在文章尾
function feed_copyright ($content) {
if(is_single() or is_feed()) {
$content.= '
转载请注明来源:'.get_the_title().'
'; $content.= '
本文链接地址:'.get_permalink().'
'; $content.= '
订阅本站:http://120.55.5.209
'; $content.= ""; }
return $content;}add_filter ('the_content', 'feed_copyright');
将以上
