Here's my current setup:
Blog (Channel) - All of my blog posts will go here
Blog Landing (Single) - This section only has one field - a Featured Articles Entries field that lets me select 3 entries from the "Blog" channel.
Basically what I want to do on the Blog Landing section is have a dedicated area for the 3 Featured articles (ones that I will choose from that Featured Articles entries field), but then display the next 5 most recent articles that have not been selected as a Featured article in a different area.
I've successfully outputted my Featured Articles with this code:
{% set featured = entry.featuredArticles %}
{% for entry in featured %}
{{ entry.title }}
{% endfor %}
And I can get my 5 most recent with this code:
{% set allEntries = craft.entries.section('blog') %}
{% for entry in allEntries.limit(5) %}
{{ entry.title }}
{% endfor %}
I can't figure out how to exclude the entries from the Featured Articles area from the output of the Recent Articles area.
So say I have 10 entries in my Blog channel, (Post 1 is most recent, Post 2 is second most recent, and so on), and I've selected Posts 2, 4, and 5 as my "Featured" articles, how do I get it so that the 5 "Recent" articles display Posts 1, 3, 6, 7, and 8 instead of Posts 1, 2, 3, 4, and 5?