如何在wordpress中获取类别列表

时间:2017-09-10 13:44:38

标签: wordpress

get_the_category_list();
wp_list_categories();

以上功能在我的项目中无效。 我无法在wordpress中获得新创建的类别。

1 个答案:

答案 0 :(得分:0)

https://developer.wordpress.org/reference/functions/get_terms/

我建议使用get_terms

  $terms = get_terms( 'category', array(
   'hide_empty' => false,
  ) );