gpt4 book ai didi

php - 从帖子 ID 中获取类别名称

转载 作者:IT王子 更新时间:2023-10-29 00:07:08 26 4
gpt4 key购买 nike

是否可以获取给定帖子 ID 的类别的类别名称,以下代码可用于获取类别 ID,但如何获取名称?

<?php $post_categories = wp_get_post_categories( 4 ); echo $post_categories[0]?>

谢谢!

最佳答案

在这里 get_the_category( $post->ID ); 将返回您需要循环遍历数组的帖子类别数组

$category_detail=get_the_category('4');//$post->ID
foreach($category_detail as $cd){
echo $cd->cat_name;
}

get_the_category

关于php - 从帖子 ID 中获取类别名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17303840/

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