「プロジェクト」のカスタム投稿タイプをクエリして、「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();