Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

dont click me

http://sadtrombone.com/?autoplay=true

// Add Toolbar Menus
function custom_toolbar() {
	global $wp_admin_bar;

	$args = array(
		'id'     => 'toolbarmenu1',
		'title'  => __( 'Don't click me! ;P', 'derp' ),
		'href'   => 'http://sadtrombone.com/?autoplay=true',
	);
	$wp_admin_bar->add_menu( $args );

}

// Hook into the 'wp_before_admin_bar_render' action
add_action( 'wp_before_admin_bar_render', 'custom_toolbar', 999 );