我曾尝试使用此代码:
$terms = get_terms('translates_category', 'include=220,238');
但它返回一个包含两个独立对象的数组:
Array
(
[0] => stdClass Object
(
[term_id] => 220
[name] => Degrees of comparison
[slug] => degrees-of-comparison
[term_group] => 0
[term_taxonomy_id] => 272
[taxonomy] => translates_category
[description] =>
[parent] => 217
[count] => 2
)
[1] => stdClass Object
(
[term_id] => 238
[name] => Lesson
[slug] => lesson
[term_group] => 0
[term_taxonomy_id] => 290
[taxonomy] => translates_category
[description] =>
[parent] => 0
[count] => 1
)
)
我可以假设,它分别返回这两个类别中所有帖子的数量(计数)。但我只需要同时位于两个类别中的帖子的总数。
第一个类别可能有 100 个帖子,第二个类别可能有 10 个帖子,但一次可能只有一个帖子与这两个类别相关联。我需要计算这些帖子。
我怎样才能做到这一点?