Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created August 20, 2014 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/7bc941f32f1abdb1c241 to your computer and use it in GitHub Desktop.
Save ckpicker/7bc941f32f1abdb1c241 to your computer and use it in GitHub Desktop.
Events Calendar 3.7 // Hook into 'tribe_events_inside_before_loop' action to display custom text for list view
add_action( 'tribe_events_inside_before_loop', 'output_custom_code' );
function output_custom_code() {
//Check if displaying list view
if( tribe_is_upcoming() ) {
echo 'Your custom code to display.';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment