很多优秀站长的站都是靠采集做起来的,但是对于wordpress网站权重不高的小站长来说,被人用软件采集自己辛辛苦苦写下的文章是极大的打击,这里大挖wp,为大家分享一段为wordpress文章添加版权的代码来防采集的方法,虽然这种防采集的方法不能从本质上防止wordpress被采集的厄运,但对于内容的版权强调还是有必要的。
这段代码操作方便,非常适合新手wordpress玩家,只需要把代码添加到functions.php文件夹,就可以兼容所有的主题文件,界面美观。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/** RSS Feed copyright */ function feed_copyright($content) { if(is_single() or is_feed()) { $content.= "<blockquote>"; $content.= '<div> » 转载保留版权:<a title="挖主题wordpress" href="http://www.wazhuti.com">挖主题</a> » <a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'"> 《'.get_the_title().'》</a></div>'; $content.= '<div> » 本文链接地址:<a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_permalink().'</a></div>'; $content.= '<div> » 如果喜欢可以:<a title="订阅挖主题" href="http://feed.wazhuti.com/"> 点此订阅本站</a></div>'; $content.= "</blockquote>"; } return $content; } add_filter ('the_content', 'feed_copyright'); |