Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Last active November 24, 2015 19:22
Show Gist options
  • Save thecodepoetry/fb9c2e60401222c7a263 to your computer and use it in GitHub Desktop.
Save thecodepoetry/fb9c2e60401222c7a263 to your computer and use it in GitHub Desktop.
Change header layout
add_action( 'get_header', 'dt_archive_layout', 10 );
function dt_archive_layout() {
$config = Presscore_Config::get_instance();
if(is_page( 35 )){
$config->set( 'header.layout', 'inline' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment