Re: bbPress 1.0-alpha-4 released
In your wp-config.php file, right after you include bbPress you should probably clear out all filters and actions so that nothing in bbPress alters WordPress unexpectedly. Use this code right after the include to do that:
// Remove filters and action that have been set by the included bbPress
if ( defined( 'BB_PATH' ) ) {
$wp_filter = array();
$wp_actions = array();
$merged_filters = array();
$wp_current_filter = array();
}