如果访问者进入我的网站,如果它来自计算机,我想显示另一个页面。我怎样才能做到这一点?进入我的网站的移动用户可以看到默认的主题主页。
答案 0 :(得分:0)
请尝试这种方法。将此代码放置到functions.php中。另外,custom-template.php必须位于wp-content / themes / your-theme目录中
add_filter( 'template_include', 'salient_child_template_include' );
function salient_child_template_include($original_template)
{
if ( ! wp_is_mobile() ) {
$your_template_path = get_theme_file_path('custom-template.php');
return $your_template_path;
}
return $original_template;
}