dw-hyphen
8/27/2015 - 10:18 PM

Remove a metabox in the post editor.

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' );