Skip to content

Instantly share code, notes, and snippets.

@ericpedia
Created August 2, 2011 14:45
Show Gist options
  • Save ericpedia/1120331 to your computer and use it in GitHub Desktop.
Save ericpedia/1120331 to your computer and use it in GitHub Desktop.
how do I get the permalink of the first term
function hey_author_link() {
$terms = wp_get_object_terms( get_the_ID(), 'people' );
$term_permalink = get_term_link($terms[0]->slug, 'people');
return $term_permalink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment