Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created February 2, 2017 13:54
Show Gist options
  • Select an option

  • Save tommcfarlin/060225016000be9d28488ff33a9c7e2a to your computer and use it in GitHub Desktop.

Select an option

Save tommcfarlin/060225016000be9d28488ff33a9c7e2a to your computer and use it in GitHub Desktop.
[WordPress] Querying Event Post Types with WP Query and The Event Calendar
<?php
$args = array(
'post_type' => array( \TribeEvents::POSTTYPE, 'revision' ),
'post_status' => array( 'publish', 'inherit', 'any' ),
'eventDisplay' => 'custom',
);
$event_query = new \WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment