Forums
-
- Forum
- Posts
-
- Installation
- 28,502
- Troubleshooting
- 62,683
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
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);