one get_posts to return a number of custom posts for each meta value
Short answer: no. But if you want to use one loop for all your needed posts, you can do something like this: $args = array( ‘post_type’ => ‘product’, ‘meta_query’ => array( array( ‘key’ => ‘cf_type’, ‘value’ => ‘fog’, // need to have 10 with value ‘fog’ and 10 with value ‘gof’ ) ), ‘numberposts’ => … Read more