Remove the Tags Box From WordPress Post Editor

Remove the ‘Tags’ box from the ‘Add New Post’ editor in WordPress. Drop this into your theme’s functions.php file.

add_action( 'add_meta_boxes', 'isa_remove_tags_meta_box' );
function isa_remove_tags_meta_box() {
    remove_meta_box( 'tagsdiv-post_tag', 'post', 'side' );// remove the Tags box
    
    // you can remove more boxes here
    // for example...
    // 	remove_meta_box( 'formatdiv', 'post', 'side' ); // remove the Format box
    //	remove_meta_box( 'categorydiv', 'post', 'side' );// remove the Categories 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]