WordPress的自动nofollow

 

图片[1]-WordPress的自动nofollow-月宅酱的博客

加nofollow的人,贱贱的,有木有

把以下加入到主题的functions.php文件内

[codee]

add_filter(‘the_content’, ‘auto_nofollow’); //nofollow文章内容的站外链接

add_filter(‘comment_text’, ‘auto_nofollow’); //nofollow评论内容的站外链接

function auto_nofollow($content) {
    //return stripslashes(wp_rel_nofollow($content));
return preg_replace_callback('/<a>]+/', 'auto_nofollow_callback', $content);
}
function auto_nofollow_callback($matches) {
    $link = $matches[0];
    $site_link = get_bloginfo('url');

    if (strpos($link, 'rel') === false) {
        $link = preg_replace("%(href=S(?!$site_link))%i", 'rel="nofollow" $1', $link);
    } elseif (preg_match("%href=S(?!$site_link)%i", $link)) {
        $link = preg_replace('/rel=S(?!nofollow)S*/i', 'rel="nofollow"', $link);
    }
    return $link;
}

[/codee]

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容