Automattic\Jetpack\Device_Detection
User_Agent_Info::is_wordpress_desktop_app()
Detect if user agent is the WordPress.com Desktop app.
Method of the class: User_Agent_Info{}
No Hooks.
Return
null
. Nothing (null).
Usage
$result = User_Agent_Info::is_wordpress_desktop_app();
User_Agent_Info::is_wordpress_desktop_app() User Agent Info::is wordpress desktop app code WPSCache 1.12.4
public static function is_wordpress_desktop_app() { if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { return false; } $agent = strtolower( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This is validating. $pos = strpos( $agent, 'WordPressDesktop' ); if ( false !== $pos ) { return true; } else { return false; } }