Skip to content

Instantly share code, notes, and snippets.

@kaskad88
Created January 16, 2020 08:07
Show Gist options
  • Save kaskad88/71e062f6c5eeb1279daa9126c6acb070 to your computer and use it in GitHub Desktop.
Save kaskad88/71e062f6c5eeb1279daa9126c6acb070 to your computer and use it in GitHub Desktop.
add_filter( 'jet-engine/listing/grid/posts-query-args', function ( $args ) {
if ( in_array( 'tribe_events', $args['post_type'] ) ) {
$args['suppress_filters'] = true;
}
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment