Skip to content

Instantly share code, notes, and snippets.

@lepittenger
Created February 22, 2016 23:27
Show Gist options
  • Save lepittenger/e124e87c9e2c1b822025 to your computer and use it in GitHub Desktop.
Save lepittenger/e124e87c9e2c1b822025 to your computer and use it in GitHub Desktop.
the events calendar + genesis: all event templates full width
/*
* Genesis Layout of The Event Calendar Views for all Templates
* The Events Calendar @3.10
* Genesis @2.1.2
* Options - full-width-content, content-sidebar, sidebar-content, content-sidebar-sidebar, sidebar-sidebar-content, sidebar-content-sidebar
*/
//Target all Event Views (Month, List, Map etc), Single Events, Single Venues, and Single Organizers
add_filter( 'genesis_site_layout', 'tribe_genesis_all_layouts' );
function tribe_genesis_all_layouts() {
if( class_exists( 'Tribe__Events__Main' ) && tribe_is_event_query() ) {
return 'full-width-content';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment