Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BP core functions in bbpress?


r-a-y
Keymaster

@r-a-y

You need to call WordPress into bbPress.

Add this to the top of your bb-config.php (right after the <?php line):

if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {
define('WP_USE_THEMES', false) ;
include_once($_SERVER['DOCUMENT_ROOT'] . '/wp-blog-header.php');
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy") ;
}

Then you can use WP/BP functions in bbPress.

Skip to toolbar