Skip to content

Instantly share code, notes, and snippets.

@anneallen
Created October 6, 2013 17:35
Show Gist options
  • Save anneallen/6856834 to your computer and use it in GitHub Desktop.
Save anneallen/6856834 to your computer and use it in GitHub Desktop.
Mobile redirect - just discovered it as a built in Wordpress function
if ( wp_is_mobile() ) {
wp_redirect( 'http://example.com/m/' );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment