Automattic\Jetpack
Device_Detection::is_handheld()
Detects handheld (i.e. phone + tablet) devices.
Method of the class: Device_Detection{}
No Hooks.
Return
true|false
.
Usage
$result = Device_Detection::is_handheld( $ua );
- $ua(string)
- User-Agent string.
Default: ''
Device_Detection::is_handheld() Device Detection::is handheld code WPSCache 1.12.4
public static function is_handheld( $ua = '' ) { $device_info = self::get_info( $ua ); return true === $device_info['is_handheld']; }