How to Hide the "Category Switcher" Admin Menu

function plt_hide_wp_category_switcher_menus() {
	//Hide the "Tools → Category Switcher" menu.
	remove_submenu_page('tools.php', 'wp-category-switcher');
}

add_action('admin_menu', 'plt_hide_wp_category_switcher_menus', 11);

Where do I put this code?