我发现这个(部分?)解决方案:
将字体排入队列时,请使用wp\\u is\\u mobile(),如下所示:
function my_scripts() {
// Load if not mobile
if ( ! wp_is_mobile() ) {
wp_enqueue_style( \'my-google-fonts\', \'https://fonts.googleapis.com/css?family=Nicefont:400,500\' );
}
// your other scripts that you enqueue...
}
add_action( \'wp_enqueue_scripts\', \'my_scripts\' );
参考文献:
codex 和
other question还有这个plug-in, 但我认为这对我的要求来说太过分了。