Skip to content

A plugin for Wordpress that makes the awesome Mobile_Detect.php available globally.

Notifications You must be signed in to change notification settings

mistweaverco/wp-mobile-detect-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WP Mobile Detect Lib

A plugin for Wordpress that makes the awesome Mobile_Detect.php available globally.

This plugin was created, because there seems to be no other plugin available which does this, which is not outdated.

I plan to keep this in sync with the official upstream.

Usage Example

<?php
// Content of /var/www/wp-content/themes/best-theme/header.php
$md = getMobileDetectLib();
if ($md->isMobile())
        echo "IS MOBILE";
else
        echo "IS DESKTOP";
?>

Methods / Functions

Because this just a wrapper for the awesome Mobile_Detect.php, You need to check their documentation on what methods/functions are available to you.