Re: Registration after Integration
found the problem. I had this in my bb-config
if (file_exists(‘../wp-blog-header.php’))
require_once(‘../wp-blog-header.php’);
else
if (file_exists(‘../../wp-blog-header.php’))
require_once(‘../../wp-blog-header.php’);
to bring in wordpress powers.
Without it the status stays the way it should. How else can I bring in “wp_list_pages” without requiring the wp-blog-header.php?