How would I order the latest 3 entries from a channel with each entry from a different author? (so they don’t end up being 3 latest entries by the same author) – I think I need to use an SQL Query for it?
{exp:channel:entries orderby="screen_name|date" channel="portfolios" limit="3" group_id="5" dynamic="no"}
<img src=" {thumbnail}" alt="{title}"/><br />
{title}<br />
{/exp:channel:entries}
Thanks in advance!
Mark – here’s a repost of the answer I posted on the other dupe question:
The best approach here, since you need your custom fields parsed, is to first find the entry_ids of the latest 4 entries from distinct authors, and then pass those to the
channel:entriestag through an embed using theentry_idparameter.This should work (be sure to replace the
channel_idwith the appropriate integer). Replace your entire current chunk of code with this:Then your embeds/_latest_per_member template can look something like this:
You had mentioned that this code gave you a recursive error – that means that you’ve put another call to the embed within the embed. Don’t do that.