I’m using 1.0.1 and this is how I got rid of my rss link.
in functions.php find
// Produces a list of pages in the header without whitespace — er, I mean negative space.
function sandbox_globalnav() {
echo ‘<div id=”menu”>
<li class=”page_item”>Home‘;
$menu = wp_list_pages(‘title_li=&sort_column=menu_order&echo=0’); // Params for the page list in header.php
echo str_replace(array(“\r”, “\n”, “\t”), ”, $menu);
echo ‘<li class=”page_item”>RSS
</div>’;
}
and I just got rid of
<a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a>
I don’t think it’ll cause any conflicts and seems to be working fine now. If anyone knows a better way please let me know