Looking for a little WordPress help, I’ve created “prev/next” links when viewing a post which will take you to the next post and previous post. I wanted to attach the category that, that specific post is related to.
For example:
Next Baseball Card Dealer or Prev Stolen Baseballs
So, Baseball Car Dealer and Stolen Baseballs are categories that I want shown.
Here’s the code I’m using to generate the Next/Prev links:
<a href="<?php echo get_permalink( $prev_post->ID ); ?>">« Prev</a>
Here is the function you need to get the category name, sorry bout formatting, on my mobile:
$category = get_the_category( $prev_post->ID );
echo $category[0]->cat_name;