Last active
October 25, 2021 20:39
-
-
Save bordoni/63de00ecc10517992053 to your computer and use it in GitHub Desktop.
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 | |
/* | |
* If you already have something in your functions.php, please remove these first few lines | |
*/ | |
// Usage tribe_is_past_event( $event_id ) | |
function tribe_is_past_event( $event = null ){ | |
if ( ! tribe_is_event( $event ) ){ | |
return false; | |
} | |
$event = tribe_events_get_event( $event ); | |
// Grab the event End Date as UNIX time | |
$end_date = tribe_get_end_date( $event, true, 'U' ); | |
return time() > $end_date; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment