Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

posicio de menu

if ( ! function_exists( 'footer_menuposicio' ) ) {

// Register Navigation Menus
function footer_menuposicio() {

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

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

}