将下面的代码添加到主题的 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'); |
时间: 2024-09-22 17:19:21