1

経由で削除しようとしました

remove_action( 'wp_head', 'feed_links', 10);

テンプレートの functions.php にありますが、機能しません。私はまだ持っています

<link rel="alternate" type="application/rss+xml" title="... Comments Feed" href="..." />

私はWordpress 3.4.2を使用しています。

4

1 に答える 1

3

試す

function remove_header_info() {

remove_action('wp_head', 'feed_links', 2);  //removes feeds
remove_action('wp_head', 'feed_links_extra', 3);  //removes comment feed links
}

add_action('init', 'remove_header_info');
于 2012-12-17T13:37:51.357 に答える