gpt4 book ai didi

wordpress - 如何在 WordPress 中获取帖子中的类别标题?

转载 作者:行者123 更新时间:2023-12-02 19:34:51 25 4
gpt4 key购买 nike

假设我在 Wordpress 中有一篇名为 Hello World 的帖子,并且我直接查看此页面,我将如何找到“Hello World”类别并显示它?

最佳答案

使用get_the_category()像这样:

<?php
foreach((get_the_category()) as $category) {
echo $category->cat_name . ' ';
}
?>

它返回一个列表,因为一篇文章可以有多个类别。

The documentation还解释了如何从循环外部执行此操作。

关于wordpress - 如何在 WordPress 中获取帖子中的类别标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/945906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com