Skip to content

Instantly share code, notes, and snippets.

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 Christian-Roth/e18222401af352ce4b59f7bcb9613f3f to your computer and use it in GitHub Desktop.
Save Christian-Roth/e18222401af352ce4b59f7bcb9613f3f to your computer and use it in GitHub Desktop.
Removes the block pattern submenu item if you are using the classic editor
/* Remove Block Pattern Submenu */
add_action( 'admin_init', function () {
remove_submenu_page( 'themes.php', 'edit.php?post_type=wp_block' );
}, 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment