向进入计算机的人显示其他页面?

Show Other Pages To People Entering The Computer?

如果访问者进入我的站点,如果它来自计算机,我想显示另一个页面。我怎样才能做到这一点?移动用户进入我的站点可以看到默认主题主页。

请试试这个方法。将此代码放入 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;
}