Tips on Customizing WP Post Series

How to Hide the "Series" Admin Menu

function plt_hide_wp_post_series_menus() {
	//Hide the "Posts → Series" menu.
	remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=post_series');
}

add_action('admin_menu', 'plt_hide_wp_post_series_menus', 15);

Where do I put this code?

How to Hide the "Post series" Meta Box

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

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

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