Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menu de prueba boluda

if ( ! function_exists( 'menu_prueba' ) ) {

// Register Navigation Menus
function menu_prueba() {

	$locations = array(
		'menupie' => __( '', 'menu_probando' ),
	);
	register_nav_menus( $locations );

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

}