Guest User

Untitled

a guest
Dec 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $wc_products = wc_get_products(array(
  2. 'status' => 'publish',
  3. 'stock_status' => 'instock'
  4. ));
  5.  
  6. foreach ($wc_products as $product){
  7. $product_array[] = [
  8. 'id' => (string)$product->get_id(),
  9. 'name' => $product->get_name(),
  10. 'price' => (float)$product->get_price(),
  11. ];
  12. }
  13. //Do some other things with the data here
Add Comment
Please, Sign In to add comment