Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

topoPersonal

ss

// Register Default Headers
function topo() {

	$headers = array(
		'topohome' => array(
			'description'   => __( 'menuhome', 'text_domain' ),
			'url'           => 'imagem',
			'thumbnail_url' => 'thumb',
		),
		'topo2' => array(
			'description'   => __( 'menu2', 'text_domain' ),
			'url'           => 'imagem2',
			'thumbnail_url' => 'thumb2',
		),
		'topo3' => array(
			'description'   => __( 'menu3', 'text_domain' ),
			'url'           => 'img3',
			'thumbnail_url' => 'thum3',
		),
		'topo4' => array(
			'description'   => __( 'menu4', 'text_domain' ),
			'url'           => 'img4',
			'thumbnail_url' => 'tmb4',
		),
		'topo5' => array(
			'description'   => __( 'menu5', 'text_domain' ),
			'url'           => 'img5',
			'thumbnail_url' => 'thb5',
		),
	);
	register_default_headers( $headers );

}
add_action( 'after_setup_theme', 'topo' );