WordPress Snippet
Last active
August 8, 2016 20:18
-
-
Save ControlledChaos/ae2c24cc3de73a82a113 to your computer and use it in GitHub Desktop.
Get tags with links from multiple custom taxonomies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
the_terms( $post->ID, array( 'tax_one', 'tax_two' ), 'Tagged: ', ' • '); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment