请问wordpress中如何获取自定义post_type的分类


当前我自定义了一个post_type.对于类型是post的文章get_the_category();可以很轻松获取当前文章的分类.但是对于自定义post_type的文章就不起效了.请问自定义post_type的文章如何获取分类?
global $post;
$categories = get_the_category($post->ID);
var_dump($categories);
也无效.显示长度为0的数组

wordpress php

Lenita淋 10 years, 6 months ago

你要找的是不是query_posts()这个函数

东风谷£早苗 answered 10 years, 6 months ago

Your Answer