
Detect Mobile Users
Right now, Mobile user growing really fast, some of them enjoy to read blog via Mobile Phone, iPhone or they BlackBerry. As weblog maintenance. We need to create some wonderful guide how to directly Mobile user to match with Mobile Friendly interface.
I got this tips from WP Recipes, this tips is really nice and I like it
Write this script on your header.php
Once done, simply open your header.php file and place the following at the top of the file. Don’t forget to edit line 5 according to the page where you’d like to redirect mobile users.
include('mobile_device_detect.php');
$mobile = mobile_device_detect();
if ($mobile==true) {
header( 'Location: http://your-website.com/?theme=Your_Mobile_Theme' ) ;
}
Thanks to Jeff Starr for this very cool idea! and Happy blogging and sent your reader to the right theme ;)
Popularity: 1%
























