Skip to content

Instantly share code, notes, and snippets.

@paulletourneau
Last active December 31, 2015 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulletourneau/8062550 to your computer and use it in GitHub Desktop.
Save paulletourneau/8062550 to your computer and use it in GitHub Desktop.
Show Column Dashboard Layout Options & Default to 2 Columns in WordPress 3.8
//* Show Column Dashboard Layout Option & Default to 2 Columns
function pl_dashboard_columns() {
add_screen_option(
'layout_columns',
array(
'max' => 2,
'default' => 1
)
);
}
add_action( 'admin_head-index.php', 'pl_dashboard_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment