Ok, so here’s some pseudo-code for what I’m doing right now:
{exp:weblog:entries limit="10"}
{if condition1 is met}
Display nothing
{elseif}
Show the contents of entry
{/if}
{/exp:weblog:entries}Here’s the sticking point:
If only 5 of the 10 entries meet the conditional criteria, only 5 posts will display on the page. Is there a way that I can modify the code so that 10 entries will ALWAYS be displayed, regardless of how many are skipped? Ie: some means of manual incrementation to the limit parameter?