Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Header

Multi Header description for wordpress

// Register Default Headers
function custom_default_headers() {

	$headers = array(
		'My Account' => array(
			'description'   => __( '', 'text_domain' ),
			'url'           => '',
			'thumbnail_url' => '',
		),
		'Cart' => array(
			'description'   => __( '', 'text_domain' ),
			'url'           => '',
			'thumbnail_url' => '',
		),
	);
	register_default_headers( $headers );

}

// Hook into the 'after_setup_theme' action
add_action( 'after_setup_theme', 'custom_default_headers' );