Skip to content

Instantly share code, notes, and snippets.

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 jo-snips/2004709 to your computer and use it in GitHub Desktop.
Save jo-snips/2004709 to your computer and use it in GitHub Desktop.
The Events Calendar: noindex single tribe_events
<?php
add_action('wp_head','tribe_dont_index_single_events');
function tribe_dont_index_single_events() {
if ( is_singular() && get_post_type() == TribeEvents::POSTTYPE )
echo '<meta name="robots" content="noindex">';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment