Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created April 5, 2016 15:34
Show Gist options
  • Save jesseeproductions/ce3a2f247fa420eac089d1ce7b14a3fe to your computer and use it in GitHub Desktop.
Save jesseeproductions/ce3a2f247fa420eac089d1ce7b14a3fe to your computer and use it in GitHub Desktop.
The Events Calendar - Add Content to Month View Only
/*
* The Events Calendar - Add Content to Month View Only
* @version 1.0
*/
add_filter( 'tribe_events_before_html', 'custom_events_before_html', 10 );
function custom_events_before_html( $tribe_events_before_html ) {
if ( tribe_is_month() ) {
$tribe_events_before_html .= 'To see Members Only Events, you must be a Member AND Logged In .';
}
return $tribe_events_before_html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment