Skip to content

Instantly share code, notes, and snippets.

@zackpyle
Last active May 18, 2023 14:42
Show Gist options
  • Save zackpyle/4314d1a3c1a86e1b4ad657688623986f to your computer and use it in GitHub Desktop.
Save zackpyle/4314d1a3c1a86e1b4ad657688623986f to your computer and use it in GitHub Desktop.
Remove Custom Taxonomy Metabox from WP Sidebar #wordpress #cptui
<?php
// example custom post type is "event"
// example custom taxonomy is "events-category"
function remove_default_event_category_metabox() {
remove_meta_box( 'tagsdiv-events-category', 'event', 'side' );
}
add_action( 'admin_menu' , 'remove_default_event_category_metabox' );
//'tagsdiv-{taxonomyname}' - Custom tag taxonomies metabox
//'{taxonomyname}div' - used for hierarchical taxonomies metabox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment