カスタムフィールドのチェックボックスにチェックが入っていたら出力
- 2016.11.08
- Advanced Custom Fields, checkbox, 出力用メモ
<?php $fruits = get_field('fruits',$post->ID); ?> <?php if ( is_array( $fruits ) && in_array('リンゴ', $fruits ) ) : ?> <img src="images/ringo_on.gif"> <?php else: ?> & […]