Design WordPress website’s Mobile Theme
wp_is _mobile
This class already define by WordPress. You just add this code and design WordPress mobile theme.
How To
Open your theme and paste this code and design now-
<?php if( wp_is_mobile()){ ?>
<span>mobile stuff goes here</span>
<?php } else { ?>
<span>desktop stuff goes here</span>
<?php } ?>
Then SAVE your theme’s file
