Automattic\Jetpack\Device_Detection
User_Agent_Info::is_wordpress_desktop_app()
Detect if user agent is the WordPress.com Desktop app.
Метод класса: User_Agent_Info{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = User_Agent_Info::is_wordpress_desktop_app();
Код User_Agent_Info::is_wordpress_desktop_app() User Agent Info::is wordpress desktop app 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; } }