Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save renkasiyas/fe2b978fea8fbf374a43229f696d2783 to your computer and use it in GitHub Desktop.
Save renkasiyas/fe2b978fea8fbf374a43229f696d2783 to your computer and use it in GitHub Desktop.
Load All Relational Events - Tribe Events & ACF
<?php
function load_all_relational_events( $query )
{
if (is_admin() && $query->tribe_is_event) {
$query-/set('eventDisplay', 'all');
}
}
add_filter('pre_get_posts', 'load_all_relational_events');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment