Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu

For me

// Register Navigation Menus
function colecoes_menu() {

	$locations = array(
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'colecoes_menu' );