Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created April 12, 2018 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anwerashif/ae6ff1df63b9d020af74475aecce0368 to your computer and use it in GitHub Desktop.
Save anwerashif/ae6ff1df63b9d020af74475aecce0368 to your computer and use it in GitHub Desktop.
Prevent GoogleBot to Index Archive Pages on Your Blog
<?php
// Do NOT include opening tag
// add 'noindex' meta to archive
add_action( 'wp_head', 'add_noindex' );
function add_noindex() {
if(is_archive()) {
echo '<meta name="robots" content="noindex,follow" />';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment