Forums

Join
bbPress Support ForumsInstallationadding login_form(); into wordpress

Info

adding login_form(); into wordpress

  1. 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?

  2. 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 ?>

  3. You must log in to post.