Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

fibra

fibra

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

	$args = array(
		'id'     => 'productos',
		'title'  => __( 'Productos', 'text_domain' ),
		'meta'   => array(
			'html'     => 'Fibra',
		),
	);
	$wp_admin_bar->add_menu( $args );

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