我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 );
问题是只显示带有帖子的类别,所以我只看到 3 个类别,而不是看到 40 多个类别。
有没有办法强制 wp_tag_cloud 显示所有类别?