// Include and instantiate the class.
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
 
// Any mobile device (phones or tablets).
if( $detect->isMobile() ) { ?>
 
 } ?>
 
// Any tablet device.
if( $detect->isTablet() ){ ?>
 } ?>
// Exclude mobiles and tablets.
if( !$detect->isMobile() && !$detect->isTablet() ){ ?> 
 
 
 
 } ?>