Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created May 12, 2014 04:01
Show Gist options
  • Save flashvnn/77f2494ece637e03f5c6 to your computer and use it in GitHub Desktop.
Save flashvnn/77f2494ece637e03f5c6 to your computer and use it in GitHub Desktop.
Field formmater template: inline tags
<?php
/*Template Name: Inline Tags*/
// dpm($data);
$tags = array();
foreach ($data as $key => $item) {
$tags[] = l($item['name'], "taxonomy/term/" . $item['tid']);
}
print implode(" | ", $tags);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment