Ubicación de Menú
Este código crea una ubicación para mostrar otro menú que colocaremos por ejemplo en el footer o donde queremos
if ( ! function_exists( 'boluda_ubicacion_menu_footer' ) ) {
// Register Navigation Menus
function boluda_ubicacion_menu_footer() {
$locations = array(
'ubicacion-footer' => __( 'Footer', 'boluda_ubicacion_menu_footer' ),
);
register_nav_menus( $locations );
}
add_action( 'init', 'boluda_ubicacion_menu_footer' );
}