有没有办法只禁用桌面版网站,它可用于移动版。
我在谷歌搜索但没有找到答案请求帮助我。
答案 0 :(得分:2)
您可以使用MobileDetect停止在桌面上加载整个网站。
Mobile Detect是一款轻量级PHP类,用于检测移动设备(包括平板电脑)。它使用User-Agent字符串与特定HTTP标头相结合来检测移动环境。
因此,要使用它,您需要检查它是否不是移动设备或平板电脑,并阻止该网站加载或重定向到自定义页面,并显示该网站不是用于桌面使用的消息。
实施例
// Include and instantiate the class.
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
// Any mobile device (phones or tablets).
if ( !$detect->isMobile() ) {
// IT IS DESKTOP
}
答案 1 :(得分:1)
使用wp_is_mobile()
:
add_action( 'get_header', 'se26676900_die', 0 );
function se26676900_die()
{
if( wp_is_mobile() )
return;
die( 'Sorry, mobile only' );
}