关于noindex,我假设你指的是元机器人noindex,如果是的话,你可以利用in_category 函数在<head></head>
标签,如:
<?php if(in_category( \'92\' ))
echo "\\t<meta name=\'robots\' content=\'noindex, nofollow\' />\\r\\n" ?>
或者,如果您不想直接更改主题,可以将其附加到
wp_head 动作挂钩,在函数中放置以下内容。php文件通常位于主主题或子主题文件夹中:
add_action(\'wp_head\', \'noRobots\');
function noRobots() {
if(in_category( \'92\' )) echo "\\t<meta name=\'robots\' content=\'noindex, nofollow\' />\\r\\n";
}
如果当前帖子属于ID为“92”的类别,则上述两项都将返回true,也可以与类别名称或slug或其中一个数组一起使用。