Created
August 22, 2014 04:38
-
-
Save danielmcclure/a7d06f4a8b8eedf98ed4 to your computer and use it in GitHub Desktop.
Force Two Column WordPress Dashboard
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 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