php - Wordpress IF IS MOBILE without tablets -
right if mobile = true means contant shows on smartphones & tablets, want mobile = smartphones only, mean this:
<?php if (wp_is_mobile() === true) { ?> content smartphones <?php } ?> <?php if (wp_is_mobile() === false) { ?> content tablets & pc <?php } ?>
of course, have code on function.php beacuse cant edit "if mobile" code on theme & plugins.
Comments
Post a Comment