一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

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');

热门栏目