Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

df

if ( ! function_exists( 'mano' ) ) {

// Register Navigation Menus
function mano() {

	$locations = array(
		'Pirmas' => __( 'Pirmo', 'text_domain' ),
		'Antras' => __( 'Custom Footer Menu', 'text_domain' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'mano' );

}