Skip to content

Instantly share code, notes, and snippets.

@brianjking
Forked from jesseeproductions/ecp-genesis-page-width
Last active August 29, 2015 14:23
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 brianjking/6711ac17026fab68de87 to your computer and use it in GitHub Desktop.
Save brianjking/6711ac17026fab68de87 to your computer and use it in GitHub Desktop.
/*
* Genesis Page Layout of The Event Calendar Main Events Page
* The Events Calendar @3.8
* Genesis @2.1.2
* Options - full-width-content, content-sidebar, sidebar-content, content-sidebar-sidebar, sidebar-sidebar-content, sidebar-content-sidebar
*/
add_filter( 'genesis_site_layout', 'tribe_genesis_page_width' );
function tribe_genesis_page_width() {
if( tribe_is_upcoming() || tribe_is_past() || tribe_is_map() || tribe_is_photo() || tribe_is_month() || tribe_is_week() || tribe_is_day() || tribe_is_photo() ) {
return 'full-width-content';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment