Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bigdigital/64a97eb1dfedf0a3b66fc7774154c81b to your computer and use it in GitHub Desktop.
Save bigdigital/64a97eb1dfedf0a3b66fc7774154c81b to your computer and use it in GitHub Desktop.
The Events Calendar add The7 page options
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