Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created November 4, 2014 00:21
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 jesseeproductions/739c9a0c00f494ccc0d7 to your computer and use it in GitHub Desktop.
Save jesseeproductions/739c9a0c00f494ccc0d7 to your computer and use it in GitHub Desktop.
Check if there are Upcoming Events in the Events Calendar
<?php
/**
* Check if there are Upcoming Events in the Events Calendar
* @3.8
*/
$events = tribe_get_events( array('eventDisplay'=> 'list'));
// Check if any events were returned
if ( count( $events ) > 0 ) {
echo "Events";
}
else {
echo "No Events";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment