Skip to content

Instantly share code, notes, and snippets.

@moskalukigor
Created November 14, 2016 12:51
Show Gist options
  • Save moskalukigor/ab288e86eddb18b13c86bf6f8a1b0cf4 to your computer and use it in GitHub Desktop.
Save moskalukigor/ab288e86eddb18b13c86bf6f8a1b0cf4 to your computer and use it in GitHub Desktop.
Get Cart items Woocommerce
if ( sizeof( WC()->cart->get_cart() ) > 0 ) {
foreach ( WC()->cart->get_cart() as $cart_item_key => $values )
{
$_product = $values['data'];
if ( $_product->id == $product_id )
$found = true;
}
if ( $found == true)
{
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment