Created
October 6, 2011 23:48
-
-
Save objectivehtml/1269046 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{exp:channel:entries channel="map_demo" class="open|closed"} | |
{if group_id == 1 || group_id == 5 && status == "open"} | |
{title} <br> | |
{/if} | |
{/exp:channel:entries} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I were to also have pagination running and a
limit="5"
on the entries loop, then inside the loop i skip entries due to thegroup_id
not matching wouldn't that cause trouble with having 5 paginated entries on the page?Meaning, if 2 don't match the
group_id
I would only see 3 entries + pagination?