• Resolved mike

    (@penskimike)


    I am using All-In-One intranet plugin, but want to be able to access certain topic feeds from the site on an external site. Are there a way to allow feeds to pass the All-In-One “wall”?

Viewing 1 replies (of 1 total)
  • Plugin Author Slava Abakumov

    (@slaffik)

    Hey @penskimike

    You can use the aioi_allow_public_access filter to be able to define whether the currently access URL is allowed to be accessed or not.

    Here is a related code from the plugin:

    $allow_access = (bool) apply_filters( 'aioi_allow_public_access', $allow_access );

    So in your custom function that hooks into the filter above you can use WordPress core functions like is_feed() to check whether you want to allow access to the feed.

    I hope this helps!

Viewing 1 replies (of 1 total)

The topic ‘RSS Feeds’ is closed to new replies.