[ 'breadcrumbs flex-row flex-row-center heading-font checkout-breadcrumbs text-center strong', esc_attr( get_theme_mod( 'cart_steps_size', 'h2' ) ), esc_attr( get_theme_mod( 'cart_steps_case', 'uppercase' ) ), ], 'aria-label' => esc_attr__( 'Checkout steps', 'flatsome' ), ]; // Cart link attributes. $cart_atts = [ 'href' => esc_url( wc_get_cart_url() ), 'class' => $cart_class, 'aria-current' => str_contains( $cart_class, 'current' ) ? 'page' : null, 'aria-disabled' => ! str_contains( $cart_class, 'current' ) ? 'true' : null, ]; // Checkout link attributes. $checkout_atts = [ 'href' => esc_url( wc_get_checkout_url() ), 'class' => $checkout_class, 'aria-current' => str_contains( $checkout_class, 'current' ) ? 'page' : null, 'aria-disabled' => ! str_contains( $checkout_class, 'current' ) ? 'true' : null, ]; // Order received link attributes. $order_received_atts = [ 'href' => '#', 'class' => 'no-click ' . $order_received_class, 'aria-current' => str_contains( $order_received_class, 'current' ) ? 'page' : null, 'aria-disabled' => ! str_contains( $order_received_class, 'current' ) ? 'true' : null, ]; // Divider attributes. $divider_atts = [ 'class' => 'divider hide-for-small', 'aria-hidden' => 'true', ]; ?>