Automattic\Jetpack
Device_Detection::is_phone()
Detects phone devices.
Метод класса: Device_Detection{}
Хуков нет.
Возвращает
true|false
.
Использование
$result = Device_Detection::is_phone( $ua );
- $ua(строка)
- User-Agent string.
По умолчанию: ''
Код Device_Detection::is_phone() Device Detection::is phone WPSCache 1.12.4
public static function is_phone( $ua = '' ) { $device_info = self::get_info( $ua ); return true === $device_info['is_phone']; }