Created
May 31, 2017 10:31
-
-
Save bigdigital/64a97eb1dfedf0a3b66fc7774154c81b to your computer and use it in GitHub Desktop.
The Events Calendar add The7 page options
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
add_action( 'get_header', 'tribe_event_fix', 10 ); | |
function tribe_event_fix() { | |
if ( is_post_type_archive('tribe_events') ) { | |
$post_id =704; //sidebar, footer settings of the page id given will be applied to event page | |
presscore_get_config()->set( 'post_id', $post_id ); presscore_config_populate_header_options(); | |
presscore_config_populate_sidebar_and_footer_options(); | |
presscore_get_config()->set( 'post_id', null ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment