我在获取多个值和单个元键的结果时遇到了很多问题。 例: 我有10个帖子' EGG'字。 我有5个帖子' Butter'字。
现在我使用以下查询来获取结果。它假设在结果中显示15个帖子,但它没有显示总结果。
$args = array(
'numberposts' => -1,
'post_type' => 'recipes',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'ingredients_repeat_%_name',
'compare' => 'LIKE',
'value' => 'Butter',
),
array(
'key' => 'ingredients_repeat_%_name',
'compare' => 'LIKE',
'value' => 'Egg',
),
)
);