Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

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

	$args = array(
		'id'     => 'bancos_fotos',
		'title'  => __( 'Bancos de imágenes', 'text_domain' ),
		'href'   => 'https://unsplash.com/search/photos/marriage',
		'group'  => false,
	);
	$wp_admin_bar->add_menu( $args );

	$args = array(
		'id'     => 'unsplash',
		'parent' => 'bancos_fotos',
		'title'  => __( 'Unsplash', 'text_domain' ),
		'href'   => 'https://unsplash.com/search/photos/marriage',
	);
	$wp_admin_bar->add_menu( $args );

	$args = array(
		'id'     => 'pexels',
		'parent' => 'bancos_fotos',
		'title'  => __( 'Pexels', 'text_domain' ),
		'href'   => 'https://www.pexels.com/search/wedding/',
	);
	$wp_admin_bar->add_menu( $args );

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