Пожалуйста, попробуйте этот подход. Поместите этот код в 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;
}