Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created June 26, 2013 02:29
Show Gist options
  • Save jo-snips/5864294 to your computer and use it in GitHub Desktop.
Save jo-snips/5864294 to your computer and use it in GitHub Desktop.
The Events Calendar - Default to List View on Event Categories
<?php
/*-------------------------------------------------------*/
/* Default to List View When Viewing Event Categories
/*-------------------------------------------------------*/
add_action( 'pre_get_posts', 'default_to_list_view' );
function default_to_list_view( $query ) {
if ( is_tax(TribeEvents::TAXONOMY) && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && empty( $query->query_vars['suppress_filters'] ) ) {
$query->set( 'eventDisplay', 'upcoming' );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment