gpt4 book ai didi

php - meta_query 在 wp_query 中不起作用

转载 作者:行者123 更新时间:2023-11-29 01:21:28 26 4
gpt4 key购买 nike

我的帖子类型是产品。我使用一个复选框字段,meta keyht_featured,当我 print_r 是 array([0] => featured) 时的元值。
我的 WP_Query:

$the_query = new WP_Query(
'post_type' => 'product',
'showposts' => 12,
'meta_query' => array(
array(
'key' => 'ht_featured',
'value' => array('featured'),
'compare' => 'IN'
)
)
);

它不显示任何帖子。我尝试使用 value => 'featured''compare' => 'EXISTS' 但它不起作用。

最佳答案

WP_query 需要传入一个数组。使用以下代码,如果有任何问题请告诉我。

$the_query = new WP_Query (array (
'post_type' => 'product',
'showposts' => 12,
'meta_query' => array(
array(
'key' => 'ht_featured',
'value' => array('featured'),
'compare' => 'IN'
)
)
));

可以引用wordpress论坛的讨论:

http://wordpress.org/support/topic/how-to-wp_query-meta_query-value-string-contain-in-key-string

关于php - meta_query 在 wp_query 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23593528/

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