【发布时间】:2014-11-29 11:40:02
【问题描述】:
我正在尝试根据在这些帖子中选择“风格和艺术”选择框的时间来输出特定帖子类型的标题列表。
下面的代码似乎除了开始和结束 ul 标记之外没有输出任何东西。
但是,如果我删除 meta_query 数组,那么它会列出所有帖子类型。
<ul>
<?php
$args = array(
'post_type' => 'profiles',
'meta_query' => array(
array(
'key' => 'you_may_also_like',
'value' => 'Style & Art'
)
)
);
query_posts($args);
while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
wp_reset_query(); ?>
</ul>
我需要能够根据特定标准过滤它们,但目前没有任何运气。
【问题讨论】:
标签: wordpress custom-post-type advanced-custom-fields