WordPress網站有時需要檢測用戶是不是在手機訪問,并允許顯示相應在手機上才可以看到的內容 ,下面這段代碼就可以解決這個問題,它會根據情況返回true或false。

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

當手機訪問此WordPress網站時,出現相應的內容,只有在手機上時才出現。