Created
February 22, 2016 23:27
-
-
Save lepittenger/e124e87c9e2c1b822025 to your computer and use it in GitHub Desktop.
the events calendar + genesis: all event templates full width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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