Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active July 11, 2023 14:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mikeott/8cbca612abc2fc0ef00089f3535834dd to your computer and use it in GitHub Desktop.
Save mikeott/8cbca612abc2fc0ef00089f3535834dd to your computer and use it in GitHub Desktop.
Force the Yoast metabox to be closed by default.
/* Close the Yoast metabox */
function shut_your_mouth_yoast() {
echo '<script>jQuery( document ).ready(function() { jQuery(".yoast.wpseo-metabox").addClass("closed"); });</script>';
}
add_action( 'admin_head', 'shut_your_mouth_yoast' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment