Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

hey

egge

// Register Default Headers
function custom_default_headers() {

	$headers = array(
		'dude dude' => array(
			'description'   => __( 'hey', 'text_domain' ),
			'url'           => 'http://fc00.deviantart.net/fs71/f/2014/022/c/e/magi_aladin_by_nehoray181-d7393sj.jpg',
			'thumbnail_url' => 'http://th08.deviantart.net/fs70/PRE/f/2014/022/3/d/mfl_by_nehoray181-d739i66.png',
		),
	);
	register_default_headers( $headers );

}

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