Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created September 25, 2018 11:33
Show Gist options
  • Save nfsarmento/e437f7b74b0ffd63046eec1cfd8efa6d to your computer and use it in GitHub Desktop.
Save nfsarmento/e437f7b74b0ffd63046eec1cfd8efa6d to your computer and use it in GitHub Desktop.
Get category title with url
<h5 class="category-title">
<?php
$terms = get_the_terms( $post->ID , 'sector' );
foreach ( $terms as $term ) {
echo '&nbsp;<a href="' .esc_url( home_url( '/' ) ). $term->slug . '" title="' . $term->name . '" ' . '>' . $term->name .'</a> &nbsp;';
}
?>
</h5>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment