Menu Footer
Snippet para crear la ubicación de un nuevo menú
if ( ! function_exists( 'boluda_ubicacion_menu_footer' ) ) {
// Register Navigation Menus
function boluda_ubicacion_menu_footer() {
$locations = array(
'ubicación-footer' => __( 'Footer - Salvo en Genesis luego hay que indicar en el child theme la ubicación (look) de este nuevo menú', 'boluda_ubicacion_menu_footer' ),
);
register_nav_menus( $locations );
}
add_action( 'init', 'boluda_ubicacion_menu_footer' );
}