I need function to serving different data depend on browser type, mobile or desktop.. I need something like this
<?php
if browser_resolution_small {
// one type of data
} else {
// another type of data for big resolution
}
?>
so I need to pull different data but I do not want to create all different template for mobile version, for example, one theme for desktop and second theme for mobile... because everything else can be done with css and media css syntax.. only need to find how to create this part of code...