What I’m looking to do it get the 16 latest posts from 16 different authors. In other words there would be the 16 latest posts, but no one single author would have more that 1 post on the page.
The way I’ve thought about doing it, is looping through all the authors, removing the duplicates, then limited that to 16 and use that to generate the posts in a for each loop, but I’d imagine that would be heavy on the server.
Any suggestions?
Use a custom SQL query to grab the latest 16 post IDs with unique authors;
Then start up a new query with the
post__in
argument;