Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

toobar

// Add Toolbar Menus
function dñ_toolbar() {
	global $wp_admin_bar;

	$args = array(
		'id'     => 'recursos',
		'title'  => __( 'recursos', 'dñ_toolbar' ),
		'href'   => 'https://www.youtube.com/',
	);
	$wp_admin_bar->add_menu( $args );

	$args = array(
		'id'     => 'Resolución de Imagenes',
		'parent' => 'recursos',
		'title'  => __( 'Resolución de Imagenes', 'dñ_toolbar' ),
		'href'   => 'https://tinypng.com/',
	);
	$wp_admin_bar->add_menu( $args );

	$args = array(
		'id'     => 'Contratar Mantenimiento',
		'title'  => __( 'Contratar Mantenimiento', 'dñ_toolbar' ),
		'href'   => 'https://www.mantenimientowordpress.com',
		'meta'   => array(
			'target'   => 'black',
		),
	);
	$wp_admin_bar->add_menu( $args );

}
add_action( 'wp_before_admin_bar_render', 'dñ_toolbar', 999 );