Remove Categories Box From WordPress Post Editor

Remove the ā€˜Categoriesā€™ box from the ā€˜Add New Postā€™ editor in WordPress. Drop this into your themeā€™s functions.php file.

1
2
3
4
5
6
7
8
9
10
11
add_action( 'add_meta_boxes', 'isa_remove_categories_meta_box' );
function isa_remove_categories_meta_box() {
     
    remove_meta_box( 'categorydiv', 'post', 'side' );// remove the Categories box
     
    // you can remove more boxes here
    // for example...
    //  remove_meta_box( 'formatdiv', 'post', 'side' ); // remove the Format box
    //  remove_meta_box( 'tagsdiv-post_tag', 'post', 'side' );// remove the Tags box
  
}

See more: , ,

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]