WordPress网站有时需要检测用户是不是在手机访问,并允许显示相应在手机上才可以看到的内容 ,下面这段代码就可以解决这个问题,它会根据情况返回true或false。

<?php if( wp_is_mobile() ) : ?>
//Display the content here when the user accesses using their phone
<?php endif ?>

当手机访问此WordPress网站时,出现相应的内容,只有在手机上时才出现。