从自定义帖子类型的帖子ID中获取类别ID 时间:2014-05-03 作者:Aman 我想从自定义类型的帖子id中获取类别id。我有帖子id,但我无法获取它的类别id。我已经使用了这么多代码,但它不工作,可能是由于自定义的帖子类型。$category = get_the_category( $post->ID ); 有什么建议吗? 3 个回复 SO网友:Gaurang P wp_get_post_categories 只能获取帖子类别而不是自定义帖子的类别,请尝试以下操作:$category = get_the_terms( $post->ID, \'custom-taxonomy-here\' ); foreach ( $category as $cat){ echo $cat->name; } 检查this link SO网友:cybmeta 您的自定义帖子类型是否支持标准类别分类法?如果自定义帖子类型中使用的类别是自定义分类法,而不是标准类别分类法,则应get_the_terms() 而不是get_the_category().$categories = get_the_terms($post->ID, "my-custom-taxonomy"); SO网友:Pawel Klopotowski 此解决方案适用于我: global $wpdb; // get all category id\'s based on post id $result = $wpdb->get_results( " select term_taxonomy_id from " . $wpdb->prefix . "term_relationships where object_id = \'" . $post_id . "\' " ); $cats_ids_array = []; foreach ( $result as $c ) { $cats_ids_array[] = $c->term_taxonomy_id; } 结束 文章导航