【发布时间】:2020-09-08 01:46:59
【问题描述】:
我正在使用The Events Calendar Wordpress 插件并尝试显示一个类别中的事件总数。目前正在尝试:
$args = array(
'post_type' => 'tribe_events',
'tax_query' => array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'food',
),
),
);
$query = new WP_Query( $args );
然后用这个来显示结果:
<?php echo $query-> found_posts; ?>
我的输出返回 0。我错过了什么吗?
【问题讨论】:
标签: php wordpress custom-wordpress-pages