Hello I have this code on my wordpress
Output: POSTED ON JULY 14, 2013 | CategoryTitle
I'm wondering how do I make the CategoryTitle clickable or have links to redirect to it category page?
Code:
<abbr class="published" title="<?php the_time('c') ?>"><?php printf( __('Posted on %s', 'arras'), get_the_time(get_option('date_format')) ) ?></abbr> | <span class="entry-cat"><?php $terms = get_the_terms( get_the_ID(), $taxonomy ); if ( $terms != '' && !is_wp_error($terms) ) { $terms = array_values($terms); if (arras_get_option('news_cat') && isset($terms[1])) echo $terms[1]->name; else echo $terms[0]->name;}?>
Output: POSTED ON JULY 14, 2013 | CategoryTitle
I'm wondering how do I make the CategoryTitle clickable or have links to redirect to it category page?