Skip to content

Instantly share code, notes, and snippets.

View fufales's full-sized avatar
🎯
Focusing

Christopher Quiros Segura fufales

🎯
Focusing
  • Heredia - Costa Rica
View GitHub Profile
@fufales
fufales / wc_customer_bought_product.php
Created September 28, 2016 22:54 — forked from codearachnid/wc_customer_bought_product.php
WooCommerce check if user has already bought product.
<?php
// if product is already in global space
global $product;
// or fetch product attributes by ID
if( empty( $product->id ) ){
$wc_pf = new WC_Product_Factory();
$product = $wc_pf->get_product($id);
}