【发布时间】:2021-11-14 14:27:18
【问题描述】:
我只想获取当前类别的帖子,而不是子类别的帖子 我的代码:
$cat = get_queried_object(); // Current category
$args = array(
'posts_per_page' => -1,
'post_type' => 'products',
'orderby' => 'title',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'section',
'field' => 'term_id',
'terms' => $cat->term_id,
)
)
);
$products = get_posts($args);
此代码返回父子类别中的所有帖子
【问题讨论】: