I want to show the login form/status from bbpress in my wordpress site.
but if I get put in "login_form();" I get: Fatal error: Call to undefined function.
How do I add the bbpress functions into wordpress?
I want to show the login form/status from bbpress in my wordpress site.
but if I get put in "login_form();" I get: Fatal error: Call to undefined function.
How do I add the bbpress functions into wordpress?
the way to do add bbpress functions into wordpress is to add:
if ( !defined('BBDB_NAME') )
require_once(ABSPATH.'bbpress/bb-load.php');
into the wp-config.php file, just before the closing ?>
You must log in to post.