Created
February 22, 2016 23:25
-
-
Save lepittenger/2454f410a42597baf7e4 to your computer and use it in GitHub Desktop.
the events calendar + genesis: main event views at 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 Page Layout of The Event Calendar Main Events Templates (Month, List, Photo, Etc..) | |
* 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) | |
add_filter( 'genesis_site_layout', 'tribe_genesis_view_layouts' ); | |
function tribe_genesis_view_layouts() { | |
if ( class_exists( 'Tribe__Events__Main' ) && class_exists( 'Tribe__Events__Pro__Main' ) ) { | |
if( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() || tribe_is_day() || tribe_is_map() || tribe_is_photo() || tribe_is_week() ) { | |
return 'full-width-content'; | |
} | |
} elseif ( class_exists( 'Tribe__Events__Main' ) && !class_exists( 'Tribe__Events__Pro__Main' ) ) { | |
if( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() || tribe_is_day() ) { | |
return 'full-width-content'; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment