Created
April 28, 2015 14:56
-
-
Save elimn/397b1fc8042bf832e813 to your computer and use it in GitHub Desktop.
MT | TEC | Prevent Day View from being indexed by search engines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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