This function adds a link in the WordPress admin bar. You must edit lines 8, 11, and 14 with your own style id, title (anchor text), and url.
function isahelp_admin_bar_link() {
global $wp_admin_bar;
if ( !is_admin_bar_showing() )
return;
$wp_admin_bar->add_menu( array(
// edit id to your own preference for styling
'id' => 'isahelp_link',
// edit title to your own anchor text for the link
'title' => __( 'Helpful Tips from Isabel'),
// edit the link, of course
'href' => __('http://blogofclient.com/help'),
) );
}
add_action('admin_bar_menu', 'isahelp_admin_bar_link',50);
Questions and Comments are Welcome