wordpressでwp_head()のいらないlinkを消す


wordpressのバージョンは3.0で、いろいろ検索したが消えてくれない・・・。

名前が変わっちゃったみたいですね。

とりあえずfunctions.phpにこれだけ入れとけばいいでしょう。


remove_action('wp_head', 'wp_enqueue_scripts', 1);

remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);

remove_action('wp_head', 'feed_links_extra', 3);

remove_action('wp_head', 'rsd_link');

remove_action('wp_head', 'wlwmanifest_link');

remove_action('wp_head', 'wp_generator');

remove_action('wp_head', 'wp_enqueue_scripts', 1);remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
remove_action('wp_head', 'feed_links_extra', 3);remove_action('wp_head', 'rsd_link');remove_action('wp_head', 'wlwmanifest_link');remove_action('wp_head', 'wp_generator');



詳しくは、wp-include/default-filters.php



// Actions

add_action( 'wp_head',             'wp_enqueue_scripts',            1     );

add_action( 'wp_head',             'feed_links',                    2     );

add_action( 'wp_head',             'feed_links_extra',              3     );

add_action( 'wp_head',             'rsd_link'                             );

add_action( 'wp_head',             'wlwmanifest_link'                     );

add_action( 'wp_head',             'index_rel_link'                       );

add_action( 'wp_head',             'parent_post_rel_link',          10, 0 );

add_action( 'wp_head',             'start_post_rel_link',           10, 0 );

add_action( 'wp_head',             'adjacent_posts_rel_link_wp_head', 10, 0 );

add_action( 'wp_head',             'locale_stylesheet'                    );

add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );

add_action( 'wp_head',             'noindex',                       1     );

add_action( 'wp_head',             'wp_print_styles',               8     );

add_action( 'wp_head',             'wp_print_head_scripts',         9     );

add_action( 'wp_head',             'wp_generator'                         );

add_action( 'wp_head',             'rel_canonical'                        );

add_action( 'wp_footer',           'wp_print_footer_scripts'              );

add_action( 'wp_head',             'wp_shortlink_wp_head',          10, 0 );

add_action( 'template_redirect',   'wp_shortlink_header',           11, 0 );

を参考。