gpt4 book ai didi

php - 在 Wordpress Events Calendar Pro 插件中获取事件类别

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:34 24 4
gpt4 key购买 nike

我正在使用 Events Calendar Pro 插件 ( https://theeventscalendar.com/product/wordpress-events-calendar-pro/ ),我需要获取每个事件的所有类别。

我尝试了 single_cat_title()get_the_category() 但它们不是我需要的。

实际上,single_cat_title() 函数只显示第一个类别,get_the_category() 返回空数组。

最佳答案

您可以使用以下代码获取每个条款的详细信息。

$cats = get_the_terms( $post_id, 'tribe_events_cat' );
$term = get_term( $cats[1], $taxonomy ); // Getting the 2nd term item
$name = $term->name; //Getting names of terms

更多详情来自 https://codex.wordpress.org/Function_Reference/get_term .

如果您还有其他问题,请告诉我。

关于php - 在 Wordpress Events Calendar Pro 插件中获取事件类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43485913/

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