使用Meta键WP_Query多个值?

时间:2017-02-18 10:20:47

标签: wordpress

我在获取多个值和单个元键的结果时遇到了很多问题。 例: 我有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',
    ),
)

);

1 个答案:

答案 0 :(得分:0)

而不是使用numberposts尝试posts_per_page。您可以详细了解WP_Query