Re: BP admin bar on bbpress front page
I sent this to Arturo, but I thought I’d post it on the forums as well!
Here’s my complete bbPress functions.php code so far:
function recreate_bb_admin_bar() {
echo '<div id="wp-admin-bar"><ul class="main-nav">';
bp_adminbar_logo();
bp_adminbar_login_menu();
bp_adminbar_account_menu();
bp_adminbar_blogs_menu();
bp_adminbar_notifications_menu();
bp_adminbar_authors_menu();
bp_adminbar_random_menu();
echo '</ul></div>';
}
add_action( 'wp_footer', 'recreate_bb_admin_bar', 8 );
add_action( 'admin_footer', 'recreate_bb_admin_bar' );
add_action( 'wp_head', 'bp_core_admin_bar_css', 1 );
Have fun!