0

我想检查该字段是否有值(在这种情况下为图像),如果有,那么它将显示图像。我不确定是否有更好的方法来做到这一点。我觉得我过度使用了 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; ?>
4

2 回答 2

1

当然有更好的方法:

<?php foreach (range(2,6) as $digit):
   if (get_field("image_$digit")): 
?>
  <img src="<?php the_field("image_$digit") ?>" alt="" />
<?php 
   endif; endforeach; ?>

当您有一些彼此非常相似的代码行时,请考虑将它们变成循环的方法。这就是这种情况,因为所有块在 'image_N' var 中只有 N 不同。

于 2013-10-30T19:03:52.143 回答
0
<?php
for($a=1;$a<=6;$a++){

    $name = 'image_' . $a;

    if(get_field($name){
        echo "<img src='";
        echo the_field($name);
        echo "' alt='' />";
    }
}

我不确定 get_field 或 the_field 函数是什么,所以我无法帮助你。

于 2013-10-30T19:07:01.750 回答