Skip to content

Instantly share code, notes, and snippets.

@dn7734
Created November 29, 2016 15:37
Show Gist options
  • Save dn7734/f802cb5d58f034aac1481b3bdf7bf065 to your computer and use it in GitHub Desktop.
Save dn7734/f802cb5d58f034aac1481b3bdf7bf065 to your computer and use it in GitHub Desktop.
<?php /* acf taxonomy field */ ?>
<?php $terms = get_field('product_category'); ?>
<?php if( $terms ): ?>
<?php foreach( $terms as $term ): ?>
<a href="<?php echo get_term_link( $term ); ?>">'<?php echo $term->name; ?>'</a>
<?php endforeach; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment