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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -