Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created February 15, 2017 13:22
Show Gist options
  • Save thecodepoetry/077a8f1661eca31725fe8ac8a7a60661 to your computer and use it in GitHub Desktop.
Save thecodepoetry/077a8f1661eca31725fe8ac8a7a60661 to your computer and use it in GitHub Desktop.
add_action( 'get_header', 'dt_media_sidebar', 10 );
function dt_media_sidebar() {
$config = Presscore_Config::get_instance();
if(is_singular( 'post' )){
$config->set( 'sidebar_position', 'left' ); //to change sidebar postion
$config->set( 'sidebar_widgetarea_id', 'sidebar_1' ); //repalce with sidebar widget area id
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment