rimpa

vendor_product list_my account

Jun 29th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. global $WCMp;
  2. $products = false;
  3.  
  4. $default = array(
  5. 'post_type' => 'product',
  6. 'post_status' => 'publish',
  7. 'posts_per_page' => -1,
  8. 'tax_query' => array(
  9. array(
  10. 'taxonomy' => $WCMp->taxonomy->taxonomy_name,
  11. 'field' => 'id',
  12. 'terms' => absint( put your vendor term_id )
  13. )
  14. )
  15. );
  16.  
  17. $args = wp_parse_args( $args, $default );
  18.  
  19. $products = get_posts( $args );
Add Comment
Please, Sign In to add comment