童鞋們有沒(méi)感覺(jué)后臺(tái)略卡了呢?那是因?yàn)閃ordPress使用了Google Font API,解決方法是移除這個(gè)字體文件鏈接或替換為國(guó)內(nèi)公共CDN庫(kù)鏈接。DN庫(kù)鏈接。
方法:移除 Google font 鏈接
function remove_open_sans_from_wp_core() {
wp_deregister_style( 'open-sans' );
wp_register_style( 'open-sans', false );
wp_enqueue_style('open-sans','');
}
add_action( 'init', 'remove_open_sans_from_wp_core' );