我在我的Wordpress网站上成功使用ACF,但无法使用我创建的ACF单选按钮获取if语句。
这是从单选按钮的ACL中获取的,如下面的代码所示。
对于我在这里失踪的任何指导都将不胜感激。
提前致谢。
<?php if( get_field('event_main_link') == 'disable' ): ?>
xxxx
<div class="event-header-content">
<div class="event-header-button">
<?php the_field('event_button'); ?>
</div>
</div>
<div class="clear"></div>
xxxx
<?php else : ?>
xx
<div class="event-header-content">
<h2 class="post-title"><?php the_title(); ?></h2>
<p><?php the_field('event_header_blurb'); ?></p>
<p><?php the_field('event_header_date'); ?></p>
<div class="event-header-button">
<a href="<?php the_permalink(); ?>"><?php the_field('event_button'); ?></a>
</div></div>
<div class="clear"></div>
xx
<?php endif; ?>
答案 0 :(得分:0)
刚刚添加了一个新帖子,上面的内容现在完美无缺。在缓存清除之后,奇怪的是它之前没有工作。