gpt4 book ai didi

categories - WP_query category__in array 仅从第一个类别 id 中提取

转载 作者:行者123 更新时间:2023-12-02 17:34:14 25 4
gpt4 key购买 nike

我正在尝试获取这些类别(关系或)中帖子的所有帖子 ID:10、11、12、13、14 以及某些额外属性。然而,我的问题在于类别。

我的 wp_query 的 args 数组如下:

$args = array(
'orderby' =>'ID',
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'category__in' => array('10','11','12','13','14'),
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'joke_type',
'value' => $type,
'type' => 'CHAR',
'compare' => '='
),
array(
'key' => 'joke_rating',
'value' => 3,
'type' => 'SIGNED',
'compare' => '>='
)
),
'fields' => 'ids'
);

这只会让我从类别 10(或我放在数组中的第一个 ID)中获取帖子。我也尝试过:'category__in' => '10,11,12,13,14''category' => '10,11,12,13,14''cat' => '10,11,12,13,14' 都一样。

知道为什么会这样吗?

最佳答案

category__in 数组中的类别 ID 应该是整数而不是字符串。

改变:

'category__in' => array('10','11','12','13','14'),

收件人:

'category__in' => array( 10, 11, 12, 13, 14 ),

关于categories - WP_query category__in array 仅从第一个类别 id 中提取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28948813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com