Skip to content

Instantly share code, notes, and snippets.

@iainurquhart
Created May 14, 2014 11:31
Show Gist options
  • Save iainurquhart/6a478826eb3b7e6aaa6a to your computer and use it in GitHub Desktop.
Save iainurquhart/6a478826eb3b7e6aaa6a to your computer and use it in GitHub Desktop.
$criteria = craft()->elements->getCriteria(ElementType::Entry);
$criteria->limit = 100;
$criteria->sectionId = 4;
$entries = craft()->elements->findElements($criteria);
foreach($entries as $entry)
{
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment