Skip to content

Instantly share code, notes, and snippets.

@elimn
Created April 28, 2015 14:56
Show Gist options
  • Select an option

  • Save elimn/397b1fc8042bf832e813 to your computer and use it in GitHub Desktop.

Select an option

Save elimn/397b1fc8042bf832e813 to your computer and use it in GitHub Desktop.
MT | TEC | Prevent Day View from being indexed by search engines
<?php
/*
* Prevent Day view URLs from being indexed by search engines
*/
function tribe_noindex_day_view () {
if ( tribe_is_day()) {
echo ' <meta name="robots" content="noindex,follow" />' . "\n";
}
}
add_action( 'wp_head', 'tribe_noindex_day_view' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment