WordPress的。用meta计算查询中的帖子

时间:2018-10-10 21:47:12

标签: php mysql sql wordpress advanced-custom-fields

如何计算此类查询中的帖子:

$countPosts = ???????
$tires = get_posts(array(
    'numberposts'   => $countPosts,
    'post_type'     => 'tires',
    'meta_query'    => array(
       'relation'       => 'AND',
        array(
            'key'       => 'tire_width',
            'value'     => '175',
            'compare'   => '=',
        ),
        array(
            'key'       => 'tire_height',
            'value'     => '70',
            'compare'   => '=',
        ),

    ),
));

我需要分页的总数

0 个答案:

没有答案