GC_Customize_Manager::is_ios()

最后更新于:2021-11-27 01:03:41

GC_Customize_Manager::is_ios()

Determine whether the user agent is iOS.

响应

(bool) Whether the user agent is iOS.

源文件

文件: gc-includes/class-gc-customize-manager.php

	public function is_ios() {
		return gc_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] );
	}