Changeset 36813 for trunk/src/wp-includes/vars.php
- Timestamp:
- 03/03/2016 03:24:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/vars.php
r36812 r36813 121 121 * Test if the current browser runs on a mobile device (smart phone, tablet, etc.) 122 122 * 123 * @staticvar bool $is_mobile124 *125 123 * @return bool 126 124 */ 127 125 function wp_is_mobile() { 128 static $is_mobile = null;129 130 if ( isset( $is_mobile ) ) {131 return $is_mobile;132 }133 134 126 if ( empty($_SERVER['HTTP_USER_AGENT']) ) { 135 127 $is_mobile = false;
Note: See TracChangeset
for help on using the changeset viewer.