Remove a metabox in the post editor.
function remove_artist_meta() { remove_meta_box( 'tagsdiv-artist', 'post', 'side' ); } add_action( 'admin_menu' , 'remove_artist_meta' );