Created
April 5, 2016 15:34
-
-
Save jesseeproductions/ce3a2f247fa420eac089d1ce7b14a3fe to your computer and use it in GitHub Desktop.
The Events Calendar - Add Content to Month View Only
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
/* | |
* 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