Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $terms = wp_get_object_terms( $post->ID, 'name_category' );
  2. foreach ( $terms as $term ) {
  3. $term_link = get_term_link( $term );
  4. echo '<a href="' . esc_url( $term_link ) . '" class="category">' . $term->name . '</a>';
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement