How to Hide the "Update URLs" Admin Menu

function plt_hide_velvet_blues_update_urls_menus() {
	//Hide the "Tools → Update URLs" menu.
	remove_submenu_page('tools.php', 'velvet-blues-update-urls.php');
}

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

Where do I put this code?