如果访问者进入我的网站,如果它来自计算机,我想显示另一个页面。我怎样才能做到这一点?进入我的网站的移动用户可以看到默认的主题主页。
问问题
49 次
1 回答
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;
}
于 2019-01-08T00:44:28.130 回答