Right now if mobile = true means the contant will shows on smartphones & tablets, I want mobile = smartphones only, I mean like this:
<?php if (wp_is_mobile() === true) { ?>
Content for smartphones only
<?php } ?>
<?php if (wp_is_mobile() === false) { ?>
Content for tablets & PC only
<?php } ?>
Of course, I have to do that with code on function.php beacuse I cant edit all “If is mobile” code all over my theme & plugins.