BuddyPress Toolbar

Is there a way to call the toolbar or adminbar as you would a menu?

<?php 
    wp_nav_menu( 
        array( 
            'container' => false, 
            'menu_id' => 'nav', 
            'theme_location' => 'primary', 
            'fallback_cb' => 'bp_dtheme_main_nav' 
        ) 
    ); 
?>

I want to add the toolbar to a div within the header.php file. Currently the toolbar is being called in the footer.php and styled by the css to a fixed position in the body.

Read More

Or perhaps is there a script I could run which would amend a div around the <div id="wp-admin-bar">?

I am running the latest install of WordPress, 3.3.1 with BuddyPress as a plugin. Using a child-theme I created. I’ve noticed a few of the normal WordPress functions do not work well with the BuddyPress plugin.

Related posts

Leave a Reply

1 comment