如果类别也有0个帖子,如何在 wordpress 中显示所有类别和 SUB-CATEGORIES 。我试过,但它显示的类别至少有一个类别的帖子。我想要显示 0帖子的类别。
谢谢
答案 0 :(得分:1)
参见get_categories函数,有一个名为“hide_empty”的参数。例如:
<?php $cats = get_categories('hide_empty=0'); ?>
答案 1 :(得分:1)
使用get_categories()函数获取所有类别。
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1, // hide empty categories [0] false
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'number' => '',
'taxonomy' => 'category',
'pad_counts' => false
);
$categories = get_categories( $args );
将所有类别存储在变量中后,使用print_r查看可以使用的数组的所有值。
echo "<pre>";
print_r( $slider_category );
echo "</pre>";
当你使用print_r时,你会看到这样的
Array (
[0] => stdClass Object
(
[term_id] => 11
[name] => Architecture
[slug] => architecture
[term_group] => 0
[term_taxonomy_id] => 11
[taxonomy] => category
[description] =>
[parent] => 0
[count] => 3
[cat_ID] => 11
[category_count] => 3
[category_description] =>
[cat_name] => Architecture
[category_nicename] => architecture
[category_parent] => 0
))
玩代码,你就会得到你想要的东西。