我正在尝试查询我的自定义帖子类型“项目”并返回所有勾选了“custom_featured”复选框的帖子。这是我当前的查询,但它没有返回任何内容,尽管我有几个帖子选中了该复选框。
$args = array(
'post_type' => 'projects',
'meta_query' => array(
array(
'key' => 'custom_featured',
'value' => 'true',
'compare' => '='
)
)
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href="<?php the_permalink();?>">
<h1><?php the_title(); ?> </h1>
</a>
<?php endwhile;
}
wp_reset_query();