Skip to content

Instantly share code, notes, and snippets.

@mrwweb
Created June 1, 2013 20: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 mrwweb/5691693 to your computer and use it in GitHub Desktop.
Save mrwweb/5691693 to your computer and use it in GitHub Desktop.
Hide Yoast SEO Metabox via Screen Options by Default for New Users
// Hide Yoast SEO by Default
function hide_yoast( $hidden ) {
$hidden[] = 'wpseo_meta';
return $hidden;
}
add_filter( 'default_hidden_meta_boxes', 'hide_yoast' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment