Skip to content

Instantly share code, notes, and snippets.

@stephanieleary
Last active March 14, 2023 22:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephanieleary/c37e7be3e97ab7a8eeea70398c1b93a8 to your computer and use it in GitHub Desktop.
Save stephanieleary/c37e7be3e97ab7a8eeea70398c1b93a8 to your computer and use it in GitHub Desktop.
Specify meta boxes that should be hidden by default for new users.
<?php
add_filter( 'default_hidden_meta_boxes', 'custom_default_hidden_screen_options', 10, 2 );
function custom_default_hidden_screen_options( $hidden, $screen ) {
$hide_these = array(
'dashboard_primary',
'postcustom',
'trackbacksdiv',
);
return array_merge( $hidden, $hide_these );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment