Forums
-
- Forum
- Posts
-
- Installation
- 28,424
- Troubleshooting
- 62,413
- Themes
- 10,413
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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);