wordpressのhead内って不要な記述が結構あります。
自分は下記を「functions.php」に入れて削除しています。
たぶん、色々差し支えはでてこない物だとは思います。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<?php /** *wordPress 4.2 で追加された絵文字対応のスクリプトを無効化 **/ function disable_emoji() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); } add_action( 'init', 'disable_emoji' ); ?> <?php /** *head内の不要な記述を削除 **/ remove_action( 'wp_head', 'wp_generator' ); //バージョン remove_action( 'wp_head', 'feed_links', 2 ); //サイト全体のフィード remove_action( 'wp_head', 'feed_links_extra', 3 ); //その他のフィード remove_action( 'wp_head', 'rsd_link' ); //Really Simple Discoveryリンク remove_action( 'wp_head', 'wlwmanifest_link' ); //Windows Live Writerリンク /* インラインスタイル削除 */ function remove_recent_comments_style() { global $wp_widget_factory; remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) ); } add_action( 'widgets_init', 'remove_recent_comments_style' ); /* Open sansフォントを使わない */ function mytheme_dequeue_fonts() { wp_dequeue_style( 'twentytwelve-fonts' ); } add_action( 'wp_enqueue_scripts', 'mytheme_dequeue_fonts', 11 ); ?> |