Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu Footer

Menu en el footer

if ( ! function_exists( 'av_custom_navigation_menus' ) ) {

// Register Navigation Menus
function av_custom_navigation_menus() {

	$locations = array(
		'menu_footer' => __( 'Menu Footer', 'av_custom_navigation' ),
	);
	register_nav_menus( $locations );

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

}