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 generatepress/a15f0cb00c90f218d04d802c0178bf5c to your computer and use it in GitHub Desktop.
Save generatepress/a15f0cb00c90f218d04d802c0178bf5c to your computer and use it in GitHub Desktop.
Remove GeneratePress menu in Dashboard
add_action( 'after_setup_theme','tu_remove_gp_admin_menu' );
function tu_remove_gp_admin_menu() {
remove_action('admin_menu', 'generate_create_menu');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment