How to Hide the "Disable Bloat" Admin Menu

function plt_hide_disable_dashboard_for_woocommerce_menus() {
	//Hide the "Settings → Disable Bloat" menu.
	remove_submenu_page('options-general.php', 'disable-bloat');
}

add_action('admin_menu', 'plt_hide_disable_dashboard_for_woocommerce_menus', 1000000000);

Where do I put this code?