Viewing 1 replies (of 1 total)
  • Just in case you didn’t find an answer to this elsewhere, you actually use the_terms() in order to do that. https://codex.wordpress.org/Function_Reference/the_terms

    For example:

    the_terms( $post->ID, 'portfolio-tag', 'Tags:', " / " ); would be the function call.

    ‘portfolio-tag’ is whatever the id of the taxonomy is
    ‘Tags:’ is what you want displayed before the list
    ” / ” is the separator

Viewing 1 replies (of 1 total)
  • The topic ‘Display a portfolio tags individual post’ is closed to new replies.