Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created August 27, 2013 15:02
Show Gist options
  • Save annalinneajohansson/6354739 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/6354739 to your computer and use it in GitHub Desktop.
Tweaked wp_is_mobile that does a separate check for iPad
<?php
function hip_is_mobile() {
if( strpos( $_SERVER['HTTP_USER_AGENT'], 'iPad' ) ) {
$cookie = $_COOKIE['is_mobile'];
if( $cookie == 'yes' )
return true;
else
return false;
} else {
return wp_is_mobile();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment