How to Hide the "Alter Configuration" Admin Menu

function plt_hide_alter_menus() {
	//Hide the "Plugins → Alter Configuration" menu.
	remove_submenu_page('plugins.php', 'alter-config');
}

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

Where do I put this code?