get_categories()仅返回正在使用的类别

时间:2012-06-22 11:01:00

标签: php wordpress plugins

$args = array(
"type"      => "post",      
"orderby"   => "name",
"order"     => "ASC");

$types = get_categories($args);

执行此操作时。 $ types仅包含“Uncategorized”,因为它被用作我帖子的默认值。还有其他类别可用,但除非我有一个使用它们的帖子,否则不会返回它们。 如何返回所有可能的类别,而不仅仅是那些正在使用的类别?

2 个答案:

答案 0 :(得分:26)

<?php $args = array("hide_empty" => 0,
                    "type"      => "post",      
                    "orderby"   => "name",
                    "order"     => "ASC" );
      $types = get_categories($args);
?>

答案 1 :(得分:-1)

为此,我建议使用:

wp_list_categories( $args );

有关此功能及如何使用的进一步说明:http://codex.wordpress.org/Template_Tags/wp_list_categories