日中英対応Web font セットを作ったついでにWordpressのテーマのほうまで見ていると、Google web fontを読み込んでる。

これがあるとアクセス規制の関係で中国国内だとページ読み込みの遅延、最悪表示されないなんて問題が発生するので削除したい。。。

てことで調べると、
読み箇所の削除は難しく、一度読み込もうとしたファンクションをキャンセルさせるそうで・・・参照元を参考にTwenty forteenで追加されたLatoも同一の書き方で追加したら・・・きえた〜!ってことで下記。
読み込みリンクのIDの一部を指定してあげるように
テーマに応じて改変すれば使えるかと〜。

// Remove Open Sans that WP adds from frontend

if (!function_exists(‘remove_wp_open_sans’)) :
function remove_wp_open_sans() {
wp_deregister_style( ” );
wp_register_style( ‘open-sans’, false );

wp_deregister_style( ‘twentyfourteen-lato’ );
wp_register_style( ‘twentyfourteen-lato’, false );
}
add_action(‘wp_enqueue_scripts’, ‘remove_wp_open_sans’);
// Uncomment below to remove from admin
add_action(‘admin_enqueue_scripts’, ‘remove_wp_open_sans’);
endif;

 

ソース : Remove Open Sans and add custom fonts(WordPress フォーラム(英語)

Sponsored Link