Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Created December 7, 2015 22:58
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 bhubbard/459489122ba8864716dd to your computer and use it in GitHub Desktop.
Save bhubbard/459489122ba8864716dd to your computer and use it in GitHub Desktop.
/**
* Sets noindex for the wpengine author archive pages.
*
* @access public
* @return void
*/
function noindex_wpengine_author() {
if (is_author( 'wpengine' )) {
echo '<meta name="robots" content="noindex">';
}
}
add_action('wp_head', 'noindex_wpengine_author');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment