Guest User

Untitled

a guest
Nov 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //creates the array to format the list of taxonomies
  2. $args = array(
  3. 'template' => __( '%s: %l.' ),
  4. 'term_template' => '<a href="%1$s">%2$s</a>',
  5. );
  6. //creates the array to receive all the taxonomies
  7. $taxList = get_the_taxonomies( $post->ID, $args );
  8. //shows every taxonomy separately
  9. foreach ($taxList as $taxItem) {
  10. echo $taxItem;
  11. endforeach;
Add Comment
Please, Sign In to add comment