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"

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

関連記事

(日本語) 「Google Analytics for WordPress」投稿URLにやたら長いパラメータがついてしまう

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

(日本語) ツールチップ実装プラグイン「WordPress Tooltip」

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

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

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

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

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

(日本語) Lightbox (画像ポップアップ) プラグイン

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

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

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

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

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

(日本語) Twenty Twelve 投稿日・投稿者を非表示に

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

(日本語) 「All in One SEO Pack」を代替するための準備

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

(日本語) ウィジェット関連のカスタマイズ・プラグイン

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 ↑