get_the_category_list();
wp_list_categories();
以上功能在我的项目中无效。 我无法在wordpress中获得新创建的类别。
答案 0 :(得分:0)
https://developer.wordpress.org/reference/functions/get_terms/
我建议使用get_terms
$terms = get_terms( 'category', array(
'hide_empty' => false,
) );