* * @since 2.0.0 bbPress (r2464) * * @return bbPress The one true bbPress Instance */ function bbpress() { return bbPress::instance(); } /** * Hook bbPress early onto the 'plugins_loaded' action. * * This gives all other plugins the chance to load before bbPress, to get their * actions, filters, and overrides setup without bbPress being in the way. */ if ( defined( 'BBPRESS_LATE_LOAD' ) ) { add_action( 'plugins_loaded', 'bbpress', (int) BBPRESS_LATE_LOAD ); // "And now here's something we hope you'll really like!" } else { bbpress(); } endif; // class_exists check