WordPress计数分类标准帖子+过滤器

时间:2015-06-06 09:15:25

标签: php wordpress

我想通过这些过滤器计算分类标准帖子:

  • "显示"仅限帖子类型

  • 自定义字段"已完成" value = no

  • 分类标准"喜剧演员",仅限第2期

这是我的代码:

<?php
$args = array(
   'post_type' => 'show',
   'meta_key' => 'done',
   'meta_value' => 'no',
   'taxonomy' => 'comedian',
            'field'    => 'term_id',
            'terms'    => '2',
);
$myquery = new WP_Query($args);

echo "Found: $myquery->found_posts";
?>

此代码过滤器&#34;显示&#34;,&#34;完成&#34;和&#34;喜剧演员&#34; 但它不仅仅过滤了术语ID 2 ... 我的代码错误了什么?

1 个答案:

答案 0 :(得分:1)

请参阅documentation您应该有这样的内容:

$args = array(
   'post_type' => 'show',
   'meta_key' => 'done',
   'meta_value' => ''.$overyet.'',
   'tax_query` => array(
                    'taxonomy' => 'comedian',
                    'field' => 'term_id',
                    'terms' => 2
                  )
);