• Resolved Hendy

    (@hendy)


    Great plug-in, but I can’t get it to preserve the links in the RSS feed.

    If I have manually added links that are pointing to an internal or external source, they work and are parsed correctly in the RSS fed. Anything that is linked to from SEO Autolinker, doesn’t work.

    Really, really need that get that going.

    https://www.ads-software.com/extend/plugins/seo-auto-linker/

Viewing 1 replies (of 1 total)
  • Plugin Author chrisguitarguy

    (@chrisguitarguy)

    This is by design: the plugin only adds links on single post pages.

    If you want to put links in the feed, you can do something like…

    add_filter('seoal_only_single', 'seoal_rss_links');
    function seoal_rss_links()
    {
        // are we on a feed page? If so, return false -- allow links
        return !is_feed();
    }

    in your theme’s functions.php file or in a plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Links not preserved in RSS feeds’ is closed to new replies.