Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. /* Useful code snippet if you want to display the category title on top
  3. * of a featured image on a list of post.
  4. * If a post is in more than one category, this snippet
  5. * selects the first one. If no cateogry is set, the default category appears.
  6. */
  7.  
  8. $post_categories = wp_get_post_categories( $post->ID );
  9. // get first category id
  10. $first_cat = get_category($post_categories[0]);
  11. // get category term info.
  12. $term_link = get_term_link( $first_cat->slug, $first_cat->taxonomy );
  13.  
  14. echo "<a href='".$term_link."'>".$first_cat->name."</a>";
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement