Skip to content

Instantly share code, notes, and snippets.

View traversal's full-sized avatar

Travis Hensgen traversal

  • Traversal
  • Melbourne, Australia
View GitHub Profile
<?php
$stores_by_city = $wf->stores("orderby=title&order=ASC")->group_by("address.city");
?>
<?php foreach ($stores_by_city as $city => $stores) : ?>
<h2><?= $city ?></h2>
<?php foreach ($stores as $store) : ?>
@traversal
traversal / gist:10694065
Created April 15, 2014 01:12
MasterPress RSS Download Example
<?php
// Assumes MasterPress has been used to setup a "download" file type with a "details" field set and
// "file" field within that set.
// Place this code in functions.php
function feed_item() {
global $wf;
echo $wf->the->details->file->enclosure();