Skip to content

Instantly share code, notes, and snippets.

@alexstandiford
Created March 7, 2017 11:24
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 alexstandiford/20a8914ecc3c06b50f3c1cefd120f5fb to your computer and use it in GitHub Desktop.
Save alexstandiford/20a8914ecc3c06b50f3c1cefd120f5fb to your computer and use it in GitHub Desktop.
Basic The Events Calendar Query
<?php
$events = new WP_Query([
'post_type' => 'tribe_events',
'posts_per_page' => 9,
'order' => 'asc',
'orderby' => 'EventStartDate',
]);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment