nickberens360
9/29/2015 - 7:53 PM

wordpress: display a pages category and link to archive page

wordpress: display a pages category and link to archive page

<?php foreach((get_the_category()) as $category) { 
        
        $catName = $category->cat_name; 
        $catId = $category->term_id;
        
        } 
        
        $catLink = get_category_link( $catId );
        
        echo '<span>Posted In: </span><a href="'.$catLink.'">'.$catName.'</a>';
      
      ?>