マジカルスリー代表のうむいと食道楽なブログ

ホームページ制作にまつわる話やマーケティングのこと、そして日々思ったことや食べたものが載っているブログです。

*

WordPressのheader部分にグイグイ入ってくるやつらを徹底除去

      2016/02/26

あくまでも、2016/02の段階の話。

WordPressを設置すると勝手に出力される不要なコードやタグを
functions.phpに以下のものを入れ込むときれいさっぱり削除されます。

<?php
/* ******************************************
<?php wp_head(); ?>から不要コードを抜きます
********************************************* */
/* コード追加
function MyFunction() {
echo ”;
}
add_action(‘wp_head’, ‘MyFunction’);
*/
/* コード削除 */
remove_action( ‘wp_head’, ‘wp_generator’ );
remove_action( ‘wp_head’, ‘wlwmanifest_link’ );
remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
remove_action( ‘wp_head’, ‘feed_links’, 2 );
remove_action( ‘wp_head’, ‘rsd_link’ );
remove_action( ‘wp_head’, ‘index_rel_link’ );
remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 );
remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 );
remove_action( ‘wp_head’, ‘adjacent_posts_rel_link_wp_head’, 10, 0 );
remove_action( ‘wp_head’, ‘adjacent_posts_rel_link_wp_head’);
remove_action( ‘wp_head’, ‘wp_shortlink_wp_head’);
/* プラグインが出力するコードも削除 */
add_action( ‘wp_print_styles’, ‘My_deregister_styles’, 100 );
function My_deregister_styles() {
wp_deregister_style( ‘wp-pagenavi’ );
wp_deregister_style( ‘contact-form-7’ );
wp_deregister_script( ‘contact-form-7’ );
}
/* 絵文字コード削除 */
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’ );
/* 勝手に入り込むPタグを抜く */
add_action(‘init’, function() {
remove_filter(‘the_excerpt’, ‘wpautop’);
remove_filter(‘the_content’, ‘wpautop’);
});
add_filter(‘tiny_mce_before_init’, function($init) {
$init[‘wpautop’] = false;
$init[‘apply_source_formatting’] = ture;
return $init;
});
?>
中々使い勝手の良いコードです。

 - Wordpress テーマ

Message

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

  関連記事

関連記事はありませんでした