【发布时间】:2016-01-21 05:04:58
【问题描述】:
我正在尝试从 custom post 类型的 category 分类中检索类别
通过以下代码:
$categories = get_categories(array(
'type' => 'ad_listing',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical'=> 1,
'exclude' => '',
'include' => '',
'number' => '',
'taxonomy' => 'ad_cat',
'pad_counts' => false
));
echo"<pre>";
print_r($categories);
echo"</pre>";
但它没有在类别中显示任何内容,尽管有 3 个类别。 我想我做错了什么:(
【问题讨论】:
-
你有这些类别的帖子吗?
hide_empty没有显示没有附加帖子的类别。
标签: php wordpress categories