Skip to content

Instantly share code, notes, and snippets.

@geoffgraham
Created November 10, 2015 14:50
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 geoffgraham/b3e17ea1bb2a6464b119 to your computer and use it in GitHub Desktop.
Save geoffgraham/b3e17ea1bb2a6464b119 to your computer and use it in GitHub Desktop.
The Events Calendar // Filter main query example
add_action( 'pre_get_posts', 'order_by_modified' );
function order_by_modified( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set(
'post_type' => 'tribe_events',
'orderby' => 'modified',
'posts_per_page' => 1
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment