去掉 Google fonts 的方法,让主题速度更快。
// 去掉 LayerSlider 的 Google Fonts, fonts.googleapis.com slow down site
function wpse_dequeue_google_fonts() {
wp_dequeue_style( 'ls-google-fonts' );
}
add_action ( 'wp_enqueue_scripts' , 'wpse_dequeue_google_fonts' , 99 );
添加这段代码到子主题的 functions.php 中就能够去掉 Google fonts 主题的,薇晓朵的子主题已经默认添加了此代码。