Determines whether the user agent is iOS.
Source
public function is_ios() {
return wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] );
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
CARVIEW |
Determines whether the user agent is iOS.
public function is_ios() {
return wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] );
}
Uses | Description |
---|---|
wp_is_mobile()wp-includes/vars.php | Test if the current browser runs on a mobile device (smart phone, tablet, etc.). |
Used by | Description |
---|---|
WP_Customize_Manager::customize_pane_settings()wp-includes/class-wp-customize-manager.php | Prints JavaScript settings for parent window. |
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.