DISCLAIMER: I’m editing a 1.4.2 installation. We can’t upgrade!
I’m trying to do something simple. I think. I want to pull in selected entries from different categories and different weblogs. One of the weblog categories must display everything by default (weblog 1). The others via a Yes/No custom field. Here’s the code I want to work:
{exp:weblog:entries category="1|2|3" orderby="date" sort="desc" rdf="off" limit="8"}
{if weblog_id =='1' OR custom_option == 'Yes'}
<li><a href="http://{title_permalink={my_template_group}/page}">{title}</a></li>
{/if}
{/exp:weblog:entries}Without the conditional it works fine. but as soon as I introduce the conditional, I can only list 5 entries, when it should be 8. The others are disappearing.
Am I missing anything glaringly obvious?