gpt4 book ai didi

Wordpress:强制 wp_tag_cloud 显示空类别?

转载 作者:行者123 更新时间:2023-12-04 06:23:41 27 4
gpt4 key购买 nike

我正在使用 wp_tag_cloud() 在我的自定义分类中显示类别:

$args = array
(
'format' => 'list',
'orderby' => 'name',
'order' => 'ASC',
'topic_count_text_callback' => default_topic_count_text,
'link' => 'view',
'taxonomy' => 'my_tax',
'echo' => true
);

wp_tag_cloud( $args );

问题是只显示带有帖子的类别,所以我看到的不是 40 多个类别,而是 3 个。 有没有办法强制 wp_tag_cloud 显示所有类别?

最佳答案

一些洞穴探险 wp_tag_cloud() (wp-includes/category-template.php 中的第 526 行)显示它调用了 get_terms() (wp-includes/taxonomy.php 中的第 1114 行)并通过传递给 wp_tag_cloud() 的 $args 数组。 . get_terms()有一个名为 hide_empty 的参数默认为 true .

这是未经测试的,但我认为如果您只是添加 "hide_empty" => false"到你的 $args 你会得到你想要的。 get_terms() 可能还有其他参数你感兴趣的。

关于Wordpress:强制 wp_tag_cloud 显示空类别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6269137/

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