Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- global $WCMp;
- $products = false;
- $default = array(
- 'post_type' => 'product',
- 'post_status' => 'publish',
- 'posts_per_page' => -1,
- 'tax_query' => array(
- array(
- 'taxonomy' => $WCMp->taxonomy->taxonomy_name,
- 'field' => 'id',
- 'terms' => absint( put your vendor term_id )
- )
- )
- );
- $args = wp_parse_args( $args, $default );
- $products = get_posts( $args );
Add Comment
Please, Sign In to add comment