• I am a really big technical ignoramus, haven’t even touched WP files myself to edit them ever. But – I realize that in 1.5, there’s no XML or RSS button on the sidebar. My RSS feed works, as far as I know (https://www.polyglotconspiracy.net/wp-rss2.php), but how do I link to it directly from the page? Do I need to add something to the template file? If anyone can provide a simple instruction, I’m greatly appreciative! [I also should know by now how to add buttons in general, e.g. for Bloglines and such, but again, Ignoramus.]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Look at the footer of your page for a link to your rss feed.

    If you’d rather have it in your sidebar, most tend to place it in the “Meta” section. You can access this by editing the sidebar.php in wp-content/themes/default/. Just insert a line for the link in <li> tags, like so:

    <li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a></li>

    The <?php bloginfo('rss2_url'); ?> generates the URL for your rss2 feed automatically. Also, the “feed:” scheme is used so that a feed reader installed on your system and set up as the default program for rss feeds will start up with that link. But it’s not necessary, not supported everywhere, and many tend to remove it.

    Thread Starter squires

    (@squires)

    Thanks so much! I took out the feed and it worked fine. Except now my comment feed does’nt seem to work.

    “Except now my comment feed does’nt seem to work.”

    Yeah, I’ve got a plugin fix for that one:

    https://guff.szub.net/entity2ncr/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding XML/RSS feed button to sidebar?’ is closed to new replies.