对于此类链接,完全没有必要浪费爬虫的有限抓取带宽,故搜集了一下,备用!
代码如下:需要将此代码,添加到function.php文件中!
wordpress给read more链接添加nofollow
function add_nofollow_to_link($link) { return str_replace('<a', '<a rel="nofollow"', $link); } add_filter('the_content_more_link','add_nofollow_to_link', 0);
wordpress给comment评论链接添加nofollow
function add_nofollow_to_comments_popup_link(){ return ' rel="nofollow" '; } add_filter('comments_popup_link_attributes', 'add_nofollow_to_comments_popup_link');