Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to disable rss ?


xmasons
Participant

@xmasons

I’ve found the following works well in functions.php

function disable_our_feeds() {

wp_redirect(get_option('siteurl'));

}

add_action('bbp_feed', 'disable_our_feeds', 1);

Skip to toolbar