Skip to content

Instantly share code, notes, and snippets.

@PaulHughes01
Created May 21, 2012 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save PaulHughes01/2763669 to your computer and use it in GitHub Desktop.
Save PaulHughes01/2763669 to your computer and use it in GitHub Desktop.
Don't index Tribe day views
<?php
if (class_exists( 'TribeEvents' ) )
add_action('wp_head','tribe_dont_index_day_views');
function tribe_dont_index_day_views() {
$tribe_ecp = TribeEvents::instance();
if( $tribe_ecp->displaying == 'day' )
echo '<meta name="robots" content="noindex">';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment