How to Hide the "Beta Flags" Admin Menu

function plt_hide_beta_flags_menus() {
	//Hide the "Tools → Beta Flags" menu.
	remove_submenu_page('tools.php', 'beta-flags');
}

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

Where do I put this code?