How can I specify the position of an admin bar item added with $wp_admin_bar->add_menu() or add_node()?
I want to add a link to my site in the admin bar, and make that link the leftmost item in the admin bar. I can add a link with this in a plugin function:
$wp_admin_bar-add_menu( array(
'id' = 'my-link',
'title' = __('MySite'),
'href' = site_url()
) );
But I'd like to make it the leftmost link in the admin bar, i.e. all the way in the top left corner. Is there a way to do this?