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 } |
Questions and Comments are Welcome