高级自定义字段单选按钮和 if 语句
Advanced Custom Fields radio button and if statement
我在我的 Wordpress 网站上成功使用了 ACF,但无法获得 if 语句来使用我创建的 ACF 单选按钮。
这里是从单选按钮的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; ?>
刚刚添加了一个新的 post,上面的现在运行良好。奇怪的是它之前没有工作,在清除缓存后。
我在我的 Wordpress 网站上成功使用了 ACF,但无法获得 if 语句来使用我创建的 ACF 单选按钮。
这里是从单选按钮的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; ?>
刚刚添加了一个新的 post,上面的现在运行良好。奇怪的是它之前没有工作,在清除缓存后。