Automattic\WooCommerce\Internal\Admin

Loader::smart_app_banner()public staticWC 1.0

Adds an iOS "Smart App Banner" for display on iOS Safari. See https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/PromotingAppswithAppBanners/PromotingAppswithAppBanners.html

Method of the class: Loader{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Loader::smart_app_banner();

Loader::smart_app_banner() code WC 8.7.0

public static function smart_app_banner() {
	if ( PageController::is_admin_or_embed_page() ) {
		echo "
			<meta name='apple-itunes-app' content='app-id=1389130815'>
		";
	}
}