Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menú ubicació footer

Menú ubicació footer

if ( ! function_exists( 'Menú_ubicació_footer' ) ) {

// Register Navigation Menus
function Menú_ubicació_footer() {

	$locations = array(
		'ubicacio-footer' => __( 'Footer', 'Menú ubicació footer' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'Menú_ubicació_footer' );

}