提问人:COBNETCKNN 提问时间:11/6/2023 更新时间:11/6/2023 访问量:30
Ajax 筛选器返回与自定义分类关联的所有帖子
Ajax filter returns all posts associated with custom taxonomy
问:
所以我正在尝试为我制作的自定义分类法制作 ajax 过滤器,但无论我单击术语的哪个按钮,都会返回该分类法中的所有帖子。我想返回仅与该术语相关的帖子。这是 ajax 函数中查询的代码
$termIds = [7,3,5,4,6];
$ajaxposts = new WP_Query([
'post_type' => 'post',
'posts_per_page' => -1,
'tax_query' => [
[
'taxonomy' => 'acquisition',
'field' => 'term_id',
'terms' => $termIds,
'operator' => 'IN'
],
]
]);
答: 暂无答案
评论
register_taxonomy()