Guest User

Untitled

a guest
Feb 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. function techmarket_cart_link() {
  2. ?>
  3. <a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" title="<?php esc_attr_e( 'View your shopping cart', 'techmarket' ); ?>">
  4. <i class="header-cart-icon <?php echo esc_attr( apply_filters( 'techmarket_header_cart_icon', 'tm tm-shopping-bag' ) ); ?>"></i>
  5. <span class="count"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() ); ?></span>
  6. <span class="amount"><span class="price-label"><?php echo apply_filters( 'techmarket_header_cart_link_label', esc_html__( 'Your Cart', 'techmarket' ) ); ?></span><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
  7. </a>
  8. <?php
  9. }
Add Comment
Please, Sign In to add comment