获取多个帖子的类别

时间:2021-04-15 作者:pathusutariya

因此,我有很多自定义帖子&;ID(来自ACF字段)。我想得到所有类别的帖子。我们有没有办法从帖子ID数组中获得所有唯一的类别?

1 个回复
SO网友:pathusutariya
 global $wpdb;
 $post_ids = [1,2,3] //Array of all post ids


// get all category id\'s based on post ids
$result = $wpdb->get_results( " select term_taxonomy_id from " . $wpdb->prefix . "term_relationships where object_id in (implode(",",$post_ids)) );