I’m trying to build a loop that will grab posts only from a single category. After going through the documentation I’ve tried it several ways but keep getting the same result.
For the following example (pulled from page one of your documentation)
<ul>
<Loop type=post count=3 orderby=date order=desc>
<li>
<a href="{Field url}"><Field title /></a>
</li>
</Loop>
</ul>
For the category term “hello” I’ve tried
<Loop type=post count=3 orderby=date order=desc id="hello">
and
<Loop type=post count=3 orderby=date order=desc include="hello">
What should I be doing instead?
Thanks!