Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $params = array(
  2. 'post_type' => array('product', 'product_variation'),
  3. );`
  4.  
  5. $wc_query = new WP_Query($params);
  6.  
  7. if ($wc_query->have_posts()) :
  8. while ($wc_query->have_posts()) :
  9. #¿Cómo mantengo los datos??
  10. endwhile;
  11. wp_reset_postdata();
  12. else:
  13. _e( 'No Products' );
  14. endif;
Add Comment
Please, Sign In to add comment