Hi, I thought the offset parameter would do the trick for what I wanted, but not quite.
I currently have this:
<h2 class="more">More Writing</h2>
<ul class="writing">
{exp:weblog:entries weblog="editorials|fiction" limit="6" orderby="date"}
<li {switch="class='odd'|"}><a href="http://{url_title_path={weblog_short_name}/article}">{blog_title}: {title}</a></li>
{/exp:weblog:entries}
</ul>I want this list to show the most recent entries from the editorials and fiction weblogs, except for the newest one in each blog. Using offset=“2”, for example, just takes off the newest entries by date, regardless of weblog. But what I want is for the list to exclude the newest fiction entry and the newest editorials entry. Possible?