Skip to content

Instantly share code, notes, and snippets.

@danielmcclure
Created August 22, 2014 04:38
Show Gist options
  • Save danielmcclure/a7d06f4a8b8eedf98ed4 to your computer and use it in GitHub Desktop.
Save danielmcclure/a7d06f4a8b8eedf98ed4 to your computer and use it in GitHub Desktop.
Force Two Column WordPress Dashboard
//* Add Dashboard Column Settings
function bm_custom_dashboard_columns() {
add_screen_option(
'layout_columns',
array(
'max' => 2,
'default' => 1
)
);
}
add_action( 'admin_head-index.php', 'bm_custom_dashboard_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment