Created
February 22, 2016 23:28
-
-
Save lepittenger/c8edf38d7658c82d7d0f to your computer and use it in GitHub Desktop.
the events calendar + genesis: single 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 Single Templates | |
* Options - full-width-content, content-sidebar, sidebar-content, content-sidebar-sidebar, sidebar-sidebar-content, sidebar-content-sidebar | |
*/ | |
//Target Single Events, Single Venues, and Single Organizers | |
add_filter( 'genesis_site_layout', 'tribe_genesis_single_layouts' ); | |
function tribe_genesis_single_layouts() { | |
if( is_singular( 'tribe_events' ) || is_singular( 'tribe_venue' ) || is_singular( 'tribe_organizer' ) ) { | |
return 'full-width-content'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment