How to Hide the "Lazy Loader" Admin Menu

function plt_hide_at_lazy_loader_menus() {
	//Hide the "Settings → Lazy Loader" menu.
	remove_submenu_page('options-general.php', 'at_lazy_loader_menu_slug');
}

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

Where do I put this code?