Show one post per author and limit query to 8 posts
-
I want to show 8 recent products from multiple authors on the frontpage.
Need to show 1 recent product per author.Currently i’m using basic wp query to show recent 8 products.
$args = array ( 'post_type' => array( 'product' ), 'posts_per_page' => '8', 'order' => 'DESC', 'orderby' => 'date', ); // The Query $query = new WP_Query( $args );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show one post per author and limit query to 8 posts’ is closed to new replies.