Created
March 31, 2015 22:48
-
-
Save anonymous/651b96a1a2ef389a141a 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
// Get all events from 1 week before the present date to 1 week in the future | |
$events = tribe_get_events( array( | |
'start_date' => date( 'Y-m-d H:i:s', strtotime( '-1 week' ) ), | |
'end_date' => date( 'Y-m-d H:i:s', strtotime( '+1 week' ) ), | |
'eventDisplay' => 'custom', | |
'posts_per_page' => -1 | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment