去掉 Google fonts 的方法,讓主題速度更快。
// 去掉 LayerSlider 的 Google Fonts, googlefonts.admincdn.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 主題的,薇曉朵的子主題已經默認添加了此代碼。