How to Hide the "Fix Alt Text" Admin Menu

function plt_hide_fix_alt_text_menus() {
	//Hide the "Tools → Fix Alt Text" menu.
	remove_submenu_page('tools.php', 'fix-alt-text');
}

add_action('admin_menu', 'plt_hide_fix_alt_text_menus', 10000);

Where do I put this code?