一个有趣的案例,其中自定义菜单中包含的多个类别存档页中的一个返回了一个空数组
get_the_category();
要求我用各种不同的方法剥猫皮(没有双关语)。
is_category() RETURNS true
get_the_category() RETURNS an empty array
the_category() RETURNS NULL
最终的答案是
Ben Everard\'s
get_category(get_query_var(\'cat\'), false) RETURNS the correct WPCategory object
谢谢!