Noindex archive pages with less than X posts
-
Hi,
I would like to noindex all archive pages that have less than a certain number of posts. Can anyone help me with the code? I’ve tried this but it’s not working:
` function wpseo_robots( $robotsstr ) {
if ( is_tag() && ( wp_count_posts()->publish < 5 ) ) {
return ‘noindex,nofollow’;
}
return $robotsstr;
}Cheers
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Noindex archive pages with less than X posts’ is closed to new replies.