Custom-Taxonomy as categories: Remove “most-used” tab?
Yes – you need to first ‘de-register’ the metabox WordPress automatically creates: add_action( ‘admin_menu’, ‘myprefix_remove_meta_box’); function myprefix_remove_meta_box(){ remove_meta_box(‘my-tax-metabox-id’, ‘post’, ‘normal’); } Where my-tax-metabox-id is the ID of your metabox. Then ‘re-register’ the metabox providing your own callback function which produces in the output: //Add new taxonomy meta box add_action( ‘add_meta_boxes’, ‘myprefix_add_meta_box’); function myprefix_add_meta_box() { add_meta_box( … Read more