开发者

Wordpress category name in single post

开发者 https://www.devze.com 2023-03-30 00:01 出处:网络
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_categ

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(' &bull; '); ?></p>

Refer here for more details.

0

精彩评论

暂无评论...
验证码 换一张
取 消