How to Check if your user’s device is an Apple Iphone
Description:
If you are planning to develop a mobile version of your blog, you may think this is a usefull function, you just need to use it directly in your template such as a conditional tag.
The Code:
<?php
global $is_iphone;
if($is_iphone) {
echo 'Iphone are Welcome on Wpcode.net';
}
?>


