假设我在Wordpress中有一个名为Hello World的帖子,我正在直接查看此页面,我将如何查找“Hello World”类别并显示它?
答案 0 :(得分:31)
像这样使用get_the_category()
:
<?php
foreach((get_the_category()) as $category) {
echo $category->cat_name . ' ';
}
?>
它返回一个列表,因为帖子可以有多个类别。
The documentation还解释了如何从循环外部执行此操作。
答案 1 :(得分:21)
您可以使用
<?php the_category(', '); ?>
将以逗号分隔的列表输出它们。
您也可以对标签执行相同的操作:
<?php the_tags('<em>:</em>', ', ', ''); ?>