フィールドに値 (この場合は画像) があるかどうかを確認したいのですが、ある場合は画像が表示されます。これを行うためのより良い方法があるかどうかはわかりません。私は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; ?>