0

我正在尝试计算在 ACF 模块的复选框中选中的具有相同值的帖子。

我有一个适用于单选按钮的代码,但它不适用于有多种选择的复选框:

到目前为止我的代码:

    function get_post_count_by_meta( $meta_key, $meta_value, $post_type) {


    $args = array(
            'post_type' => $post_type,
            'numberposts'   => -1,          
            'post_status'   => 'publish',
        );

        if ( $meta_key && $meta_value ) {
                if ( is_array($meta_value) ) {
            $args['meta_query'][] = array(
                'key' => $meta_key,
                'value' => $meta_value, 
                'compare' => 'LIKE');
        }

        else {
            $args['meta_query'][] = array('key' => $meta_key, 'value' => $meta_value);
        }   
    }

        $posts = get_posts($args);

        $count = count($posts);


    return $count; 

}
 $post_count = get_post_count_by_meta('test_field', 'Value 1', 'any');
echo $post_count;

当字段是复选框时,这始终响应 0。$args 查询一定有问题。有人可以给我一个提示吗?谢谢

4

1 回答 1

0

numberposts参数应该是posts_per_page(见文档

于 2013-07-19T23:25:15.003 回答