函数通过get_categories()函数显示wordpress中没有子类别的类别

时间:2012-03-18 13:36:54

标签: php wordpress menu

我使用此功能显示我主题的顶部导航:

function costume_menu() {

$categories =  get_categories('hide_empty=0&style=none'); 
  foreach ($categories as $category) {
    $nav = '<li>';
    $nav .= '<a href="'.get_category_link($category->term_id).'">'.strtoupper($category->cat_name).'</a>';
    $nav .= '</li>';

    echo $nav;
  }

} 

但是它显示了所有的类别和子类别,我试着在wordpress的codex网站上阅读,只排除子类别,但我找不到任何东西!

1 个答案:

答案 0 :(得分:4)

这应该有效

$categories =  get_categories('hide_empty=0&style=none&parent=0');