Syndicated Vindicated

My first challenge in the blogosphere was to discover why my wordpress rss wasn’t playing well with others. Specifically, I was getting “file not found” in Sage.

Solutions:

  1. Remove “feed:” from rss links in sidebar.php and footer.php by changing:

    <a href="feed:<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>

    to:

    <a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>

  2. Fix one line of code in wp-blog-headers.php. Thanks to SourceForge for this solution.

Ahhhhh…sweet relief. Now I can get back to more important things, like writing haikus!

1 comment

Comments are closed.