How to show category name on the custom single post. If the post belongs to category开发者_如何学Go Products, then i need to show this category name with link to this category.
You could use the_category API from wordpress.
<p>Post Categories: <?php the_category(' • '); ?></p>
Refer here for more details.
精彩评论