Right, but you have to hard code the entry ids. Let me explain better.
I have two weblog tags on the home page. The first one displays the last 4 posts in any of the three weblogs that have the category “featured”.
{exp:entries:weblog weblog="articles|gallery|videos" category="149" sort="desc" limit="4"}
featured content
{/exp:entries:weblog}
The second weblog tag displays all the posts from the three different weblogs.
{exp:entries:weblog weblog="articles|gallery|videos" sort="desc" limit="20"}
seconday content
{/exp:entries:weblog}
I want to grab the 4 entry ids from the featured section so they aren’t duplicated in the second weblog. The entry id parameter doesn’t work because I would have to update the template with the excluded entry id every time a new post is featured. The offset parameter doesn’t work because not every post is featured so offseting by 4 wouldn’t work. And excluding the entire category wouldn’t work because when a post is no longer the last 4 in the feature category it wouldn’t appear in the section below. Does that make sense?
I thought maybe by doing a query to grab the entry ids and an embed this could be accomplished
{embed="secondary_weblog" entryids="query that grabs the 4 entry ids"}
embeded template:
{exp:entries:weblog weblog="articles|gallery|videos" entry_id="not {embed:entryids}" limit="20"}
seconday content
{/exp:entries:weblog}
But I’m not sure that would work and if it would I’m not sure what the query would be.