How to Hide the "Post Type Archives" Meta Box

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

	//Hide the "Post Type Archives" meta box.
	remove_meta_box('hptal-metabox', $screen->id, 'side');
}

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

Where do I put this code?