How to Hide the "Unlist Post" Meta Box

function plt_hide_unlist_posts_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Unlist Post" meta box.
	remove_meta_box('ehf-meta-box', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_unlist_posts_metaboxes', 20);

Where do I put this code?