我在函数中使用以下代码段。php。
function add_noindex() {
if(is_archive()) {
echo \'<meta name="robots" content="noindex,follow" />\';
}
}
add_action( \'wp_head\', \'add_noindex\' );
我以为这不会索引我所有的归档页面,但它不起作用。我的存档页代码如下所示:
<?php get_header(); ?>
<h1><?php single_cat_title();?></h1>
<?php if (have_posts()) : while(have_posts()) : the_post();?>
<h3><?php the_title();?></h3>
<?php the_excerpt();?>
<a href="<?php the_permalink();?>">Read More</a>
<?php endwhile;
endif;?>
有什么想法吗?提前感谢您!