WordPress实现分类的所有链接添加nofollow属性

作者:简简单单 2013-06-20

将下面的代码添加到主题的 functions.php 文件即可:

 代码如下 复制代码

function nofollow_cat_posts($text) {
global $post;
        if( in_category(1) ) { // 修改这里的分类ID
                $text = stripslashes(wp_rel_nofollow($text));
        }
        return $text;
}
add_filter('the_content', 'nofollow_cat_posts');

相关文章

精彩推荐