我曾嘗試使用此代碼:如何獲取位於2個特定類別在WordPress的
$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個帖子,但其中只有一個可能同時與兩個類別關聯。我需要統計這些帖子。
我該怎麼做?
你想獲得總數爲CAT1有3個和CAT1有1'3 + 1 = 4'? –
我需要獲取當時與兩個網站相關的帖子數量。第一類可能有100個帖子,第二個可能有10個帖子,但其中只有一個可能與這兩個類別相關聯 –