Advertisement
Guest User

Pobieranie liczby produktów WooCommerce - Krok 1

a guest
Apr 5th, 2017
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_action('wp_ajax_nopriv_get_cart_totals', 'get_cart_totals_callback');
  2.  
  3. function get_cart_totals_callback() {
  4.  
  5.     global $woocommerce;
  6.  
  7.     echo json_encode(array(
  8.         'cart_count' => $woocommerce->cart->cart_contents_count
  9.     ));
  10.  
  11.     wp_die();
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement