Twenty Twelve | How to unlink Open Sans font

Twenty Twelve loads "Open Sans" font style as special font.
in case you don't need this you can unlink this by following way which written in Twenty Twelve functions.php.

Twenty Twelve - Open sans

/wp-content/themes/twentytwelve/functions.php

	/*
	 * Loads our special font CSS file.
	 *
	 * The use of Open Sans by default is localized. For languages that use
	 * characters not supported by the font, the font can be disabled.
	 *
	 * To disable in a child theme, use wp_dequeue_style()
	 * function mytheme_dequeue_fonts() {
	 *     wp_dequeue_style( 'twentytwelve-fonts' );
	 * }
	 * add_action( 'wp_enqueue_scripts', 'mytheme_dequeue_fonts', 11 );
	 */

Just copy this into functions.php in child theme like this.

/wp-content/themes/[child theme]/functions.php

// To disable in a child theme, use wp_dequeue_style()
function mytheme_dequeue_fonts() {
    wp_dequeue_style( 'twentytwelve-fonts' );
}
add_action( 'wp_enqueue_scripts', 'mytheme_dequeue_fonts', 11 );

this will let your wp site not link "Open Sans" font at id="twentytwelve-fonts-css"

  • このエントリーをはてなブックマークに追加

関連記事

no image

(日本語) アイキャッチにマウスオーバーすると投稿タイトルを表示

Sorry, this entry is only available in 日本語.

(日本語) プラグイン関連のJSやCSSの読み込みをフィルター

Sorry, this entry is only available in 日本語.

(日本語) Twenty Fifteen テーマ用フォント "Noto" / "Inconsolata"の使用を止

Sorry, this entry is only available in 日本語.

(日本語) Twenty Twelve カスタマイズ

Sorry, this entry is only available in 日本語.

Twenty Twelve | How to change "Proudly powered by WordPress" for Copyright*

Twenty Twelve in 1.1 This post explains how to change the strings "Proudly ~" in footer element. J

(日本語) Google Code Prettifyを使用してソースコードを表示をしてくれる「Prettify Code Syntax」

Sorry, this entry is only available in 日本語.

(日本語) jQueryをCDNから読み込む

Sorry, this entry is only available in 日本語.

(日本語) Twenty Fourteen カスタマイズ

Sorry, this entry is only available in 日本語.

(日本語) Twitterのツイートボタンの設置

Sorry, this entry is only available in 日本語.

(日本語) head内に出力される要素を整理

Sorry, this entry is only available in 日本語.

Message

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.

    PAGE TOP ↑