• Resolved virgilio27

    (@virgilio27)


    What is the code in php for wrap any contents to detect if it is mobile or desktop?

    I know that the shortcode is this (below) but what is the alternative in php:
    [wp_bannerize_pro_mobile]
    <h3>You’re from mobile</h3>
    [/wp_bannerize_pro_mobile]

Viewing 1 replies (of 1 total)
  • Plugin Author gfazioli

    (@gfazioli)

    @virgilio27 you may use

    if (wpbones_user_agent()->isMobile()) {
       // mobile only
    }

    or

    if (!wpbones_user_agent()->isMobile()) {
       // desktop only
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How wrap content in php’ is closed to new replies.