Created
February 22, 2016 23:28
-
-
Save lepittenger/6d19927a46f9e91bbf9d to your computer and use it in GitHub Desktop.
the events calendar + genesis: show community events templates 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 Layout of The Event Calendar Single Templates | |
* Options - full-width-content, content-sidebar, sidebar-content, content-sidebar-sidebar, sidebar-sidebar-content, sidebar-content-sidebar | |
*/ | |
//Target Community Events Edit Form and My Event's List | |
add_filter( 'genesis_site_layout', 'tribe_genesis_community_layouts' ); | |
function tribe_genesis_community_layouts() { | |
if( tribe_is_community_my_events_page() || tribe_is_community_edit_event_page() ) { | |
return 'full-width-content'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment