【发布时间】:2015-02-16 06:32:57
【问题描述】:
我在我的 WP 中使用 WPML 和 ACF。
现在我想列出来自类别 ID 399 的帖子,其中包含 ACF 字段“organization_type”和值键“socialbusiness”,但它们没有显示出来。
这是我的查询尝试:
$args = array(
'post_type' => 'post',
'cat' => 399,
'posts_per_page' => -1,
'meta_query' => array(
//'relation' => 'OR',
array(
'key' => 'organization_type',
'value' => 'socialbusiness',
//'compare' => '='
)
)
);
//unset($args);
$args = array(
'numberposts' => -1,
'post_type' => 'post',
'cat' => 399,
'meta_key' => 'organization_type',
'meta_value' => 'socialbusiness'
);
// query
query_posts( $args );
while( have_posts() ) {
我做错了什么?
【问题讨论】:
标签: php wordpress advanced-custom-fields