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