How to Hide the "Mobile Smart App Banner" Admin Menu

function plt_hide_mobile_smart_app_banner_menus() {
	//Hide the "Settings → Mobile Smart App Banner" menu.
	remove_submenu_page('options-general.php', 'mobile-smart-app-banner');
}

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

Where do I put this code?