按字母列出wordpress类别

时间:2009-05-03 19:23:26

标签: php wordpress

在类别存档页面上,我想列出所有类别,使其如下所示:

  

“一”

     
      
  • ---苹果
  •   
  • ---答案
  •   
     

“B”

     
      
  • ---球
  •   
  • ---大
  •   
     

等等。

这是我正在谈论的wordpress。

1 个答案:

答案 0 :(得分:2)

您可以使用get_categories()功能检索类别列表。您可以将一组参数传递给该函数,该函数允许您指定要使用的排序顺序等。

看起来应该是这样的:

$defaults = array('type' => 'post',
    'child_of' => 0,
    'orderby' => 'name',
    'order' => 'ASC',
    'hide_empty' => true,
    'include_last_update_time' => false,
    'hierarchical' => 1, 
    'exclude' => ,
    'include' => ,
    'number' => ,
    'pad_counts' => false
);

$categories = get_categories($defaults);

有关参数值和使用返回的类别的更多信息,请查看Wordpress codex中的this page