這裏是我的單選按鈕的設置: 顯示最新的帖子 - 如果「是」選擇爲單選按鈕值
我似乎無法得到那些在價值是帖子中顯示環..
這裏是我的循環:
<?php
$args = array(
'numberposts' => 1,
'post_type' => 'event',
'posts_per_page' => '1',
'meta_key' => 'sponsored_event',
'meta_value' => 'yes'
);
$the_query = new WP_Query($args);
?>
<?php if (have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div class="sponsored-event">
<div class="sponsored-image" style="background-image: url(<?php the_field('event_image'); ?>);"></div>
<div class="sponsored-info">
<h2>Sponsored Event</h2>
<h1><strong><?php the_title(); ?></strong></h1>
<p><strong>Date</strong></p><br>
<p class="place"><?php the_field('event_location'); ?></p>
<p class="time"><?php the_field('event_time'); ?></p>
<p><?php the_field('excerpt'); ?></p>
</div>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
我已經在我的meta_query中嘗試了很多變化,沒有任何東西似乎工作。 – lbollu
您的if語句也存在問題。查看更新的答案。 – mbacon40