WordPressの不要なリンクを削除する

テーマファイルの「function.php」を使うのが最も手軽でしょう。以下の記述を追記すればOKです。

if (function_exists(‘register_sidebar’))
register_sidebar();
remove_action(‘wp_head’,'index_rel_link’);
remove_action(‘wp_head’,'parent_post_rel_link’,10);
remove_action(‘wp_head’,'start_post_rel_link’,10);
remove_action(‘wp_head’,'adjacent_posts_rel_link_wp_head’,10);

Copyright © All Rights Reserved · Green Hope Theme by Sivan & schiy · Proudly powered by WordPress