Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Admin Menu Bar – Sl Simp Vendor

The admin menu bar for my plugin SL Simp Vendor

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

	$args = array(
		'id'     => 'rt_sv_nav',
		'title'  => __( 'SL Simp Vendor', 'text_domain' ),
	);
	$wp_admin_bar->add_menu( $args );

}
add_action( 'wp_before_admin_bar_render', 'rt_simp_vendor_toolbar', 999 );