• After upgrading I noticed problem with Safari 2.0 RSS address bar button. What happens is it loads feed://www.mydomain/mywebblogtitle instead of feed://www.mydomain/feed This used to work before updating WP 1.5 to latest. If I change the Weblog title in Options in WP to “feed”, Safari RSS works. But of course web site title and RSS feed out is now wrong. This is a problem with PHP in WP I think. Anyone have this problem or have a fix for this. I am a bit confused with this. Any insight would be appreciated. The feed part at end is being read from Weblog Title? Does not work correctly.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    The problem is actually with your theme. Take a look at the three feed links in your Header Template (header.php). They are:

    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="ReelSmart.com" />
    <link rel="alternate" type="text/xml" title="RSS .92" href="ReelSmart.com" />
    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="ReelSmart.com" />

    They should be:

    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />

    Just replace that section with the one that I provided, or the similar section from the WordPress Default Theme just to be safe, and your problems should be cleared up.

    Thanks so much. I missed that. Works like a charm.

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    Glad to be of service. ^_^

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help with Safari 2.0 RSS and new WP’ is closed to new replies.