gpt4 book ai didi

wordpress - 如何在wordpress中显示所有类别?

转载 作者:行者123 更新时间:2023-12-03 14:37:10 25 4
gpt4 key购买 nike

我使用了这个代码:

      $categories = wp_get_post_categories(get_the_ID());
foreach($categories as $category){
echo '<div class="col-md-4"><a href="' . get_category_link($category) . '">' . get_cat_name($category) . '</a></div>';
}

但只返回一个类别,我怎样才能获得所有类别?

最佳答案

在您给我们的代码中,您选择了为 get_the_ID() 正在执行该部分的特定帖子选择的类别。但是,您最好使用另一个函数 get_categories() https://developer.wordpress.org/reference/functions/get_categories/你会这样做:

$categories = get_categories();
foreach($categories as $category) {
echo '<div class="col-md-4"><a href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></div>';
}

您还可以传递更具体的参数(如果需要) - 参见 https://developer.wordpress.org/reference/functions/get_terms/有关您可以通过的元素的详细信息

关于wordpress - 如何在wordpress中显示所有类别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39704715/

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