Skip to content

Instantly share code, notes, and snippets.

@chadsten
Last active August 29, 2015 13:56
Show Gist options
  • Save chadsten/8831379 to your computer and use it in GitHub Desktop.
Save chadsten/8831379 to your computer and use it in GitHub Desktop.
<?php
$vocab = 'tag';
$output = array();
foreach ($data->field_field_tags as $term) {
$output[] = "<a href='/" . $vocab . "/" . strtolower(str_replace(" ","-",$term['rendered']['#markup'])) . "'>" . $term['rendered']['#markup'] . "</a>";
}
echo implode(", ", $output);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment