Re: Using wp_head within bbPress
Come on, there has to be a way to do this!
It worked fine for me with the current stable release, but the login was broken, so I installed the unstable. The login started working, but wp_head()
stopped.
bb-config.php:
include('../wp-config.php');
/**
* The base configurations of bbPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys and bbPress Language. You can get the MySQL settings from your
* web host.
*
* This file is used by the installer during installation.
*
* @package bbPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for bbPress */
define('BBDB_NAME', 'bbpress');
bb-templateskakumeifront-page.php:
<?php get_header(); ?>
... page ...
<?php get_footer(); ?>