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

2022-08-30 22:00:29
$args = array(
"type"      => "post",      
"orderby"   => "name",
"order"     => "ASC");

$types = get_categories($args);

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


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

答案 2

为此,我建议使用:

wp_list_categories( $args );

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


推荐