I am talking about this line of code

<link rel="alternate" type="application/rss+xml" title="example.com &raquo; Comments Feed" href="http://example.com/comments/feed/" />

I have tried adding a remove action hook manually in template's functions.php

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

But it doesn't remove it.

I have tried wordpress head cleaner plugin unfortunately it also couldn't remove it.

At last I have edited wp-includes/default-filters.php and commented out

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

My comment feed links are still there. I prefer functions.php modification or plugins other than modifying the core files.

I have tried disabling all the plugins and gone back to default theme but looks like the solution is not plugin or theme dependent. Unfortunately nothing works! I am using wordpress 3.2.1

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try this one instead.

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

Yours is for things like category feeds if I recall correctly.

Based on link coolsaint provided you could remove both and then explicitly add back in the posts feed. It isn't the most elegant, but it does mean you don't have to modify the core WP files.

add_action('wp_head', 'addBackPostFeed');
function addBackPostFeed() {
    echo '<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed" href="'.get_bloginfo('rss2_url').'" />'; 
}
link|improve this answer
the hook will remove my posts and comment feed both. I want only comment feed to be removed. – coolsaint Aug 25 '11 at 17:53
I think you are out of luck then. Looking at codex (line 1591) phpxref.ftwr.co.uk/wordpress/nav.html?_functions/index.html - there is no callback and none of the args allow you to choose which of the two is displayed. – mrtsherman Aug 25 '11 at 18:06
1  
I have stumbled upon this page and gave me and workout and it worked wordpress.org/support/topic/… – coolsaint Aug 25 '11 at 18:16
@coolsaint - thank you for the link. I added it to my answer as a workaround. – mrtsherman Aug 25 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.