1

如果一个类别也有 0 个帖子,如何在wordpress中显示所有类别子类别。我试过了,但它显示的类别在一个类别中至少有 1 个帖子。我想显示也有0 个帖子的类别。

谢谢你

4

2 回答 2

1

get_categories函数,有个参数叫“hide_empty”。例如:

<?php $cats = get_categories('hide_empty=0'); ?>
于 2010-11-18T10:03:44.313 回答
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
    ))

玩代码,你会得到你想要的。

于 2015-06-18T18:31:15.017 回答