Skip to content

Instantly share code, notes, and snippets.

@traversal
Created October 20, 2014 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save traversal/20cfb74a164a4a302646 to your computer and use it in GitHub Desktop.
Save traversal/20cfb74a164a4a302646 to your computer and use it in GitHub Desktop.
Production Dates
<ul>
<?php foreach ($wf->type("production")->by("production_deadline_fields.deadline_date", "DESC") as $production) : ?>
<li>
<h2>Production: <?= $production->title ?></h2>
<p>
Date: <?= $production->production_deadline_fields->deadline_date ?>
</p>
</li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment