我想检查该字段是否有值(在这种情况下为图像),如果有,那么它将显示图像。我不确定是否有更好的方法来做到这一点。我觉得我过度使用了 if 语句。建议?
<img src="<?php the_field('image_1'); ?>" alt="">
<?php if (get_field('image_2')) : ?>
<img src="<?php the_field('image_2'); ?>" alt="">
<?php endif; ?>
<?php if (get_field('image_3')) : ?>
<img src="<?php the_field('image_3'); ?>" alt="">
<?php endif; ?>
<?php if (get_field('image_4')) : ?>
<img src="<?php the_field('image_4'); ?>" alt="">
<?php endif; ?>
<?php if (get_field('image_5')) : ?>
<img src="<?php the_field('image_5'); ?>" alt="">
<?php endif; ?>
<?php if (get_field('image_6')) : ?>
<img src="<?php the_field('image_6'); ?>" alt="">
<?php endif; ?>