dongyu3712 2017-12-23 00:32
浏览 28
已采纳

WordPress ACF复选框循环

I currently have a CPT of 'restaurant'. Each restaurant can have multiple 'features', chosen by the user in the back end via a ACF checkbox field.

I'd like to be able to loop through this field and apply a class name for each checkbox that is checked.

In the below example, the restaurant has 3 of the 4 possible fields ticked. However, only the 'Parking' icon is showing (4 times) - likely due to my if statements.

Ideally, i'd like it to loop through each 'if', grab the string attached to $feature_icon and then spit it out in the echo further below in the span.

I've tried moving the section of if statements to be within the 'foreach' loop to no avail.

Any advice appreciated, thanks.

<?php if( $featured_restaurants ): ?>
<?php foreach ( $featured_restaurants as $featured_restaurant ): ?>

<div class="card__inputs"> <!-- Featured card specific icons start -->

<?php
    if(in_array('alcohol', $restaurant_features)):
        $feature_icon = "Alcohol";
    endif;

    if(in_array('family_friendly', $restaurant_features)):
        $feature_icon = "Family-Friendly";
    endif;

    if(in_array('open_late', $restaurant_features)):
        $feature_icon = "Open-Late";
    endif;

    if(in_array('parking', $restaurant_features)):
        $feature_icon = "Parking";
    endif;
?>

    <div class="details u-float-left"> <!-- Featured card specific icons container start -->
    <span class="icon icon--medium icon--Italian"></span>
    <?php if($restaurant_features): ?>
        <?php foreach($restaurant_features as $restaurant_feature): ?>
            <span class="icon icon--medium icon--<?php echo $feature_icon; ?>"></span>
        <?php endforeach; ?>
    <?php endif; ?>

    </div> <!-- Featured card specific icons container end -->

    </div> <!-- Featured card specific icons end -->

<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
  • 写回答

1条回答 默认 最新

  • dpx86402 2017-12-23 00:43
    关注

    Use an array.

    <?php if( $featured_restaurants ): ?>
    <?php foreach ( $featured_restaurants as $featured_restaurant ): ?>
    
    <div class="card__inputs"> <!-- Featured card specific icons start -->
    
    <?php
        if(in_array('alcohol', $restaurant_features)):
            $feature_icon['alcohol'] = "Alcohol";
        endif;
    
        if(in_array('family_friendly', $restaurant_features)):
            $feature_icon['family_friendly'] = "Family-Friendly";
        endif;
    
        if(in_array('open_late', $restaurant_features)):
            $feature_icon['open_late'] = "Open-Late";
        endif;
    
        if(in_array('parking', $restaurant_features)):
            $feature_icon['parking'] = "Parking";
        endif;
    ?>
    
        <div class="details u-float-left"> <!-- Featured card specific icons container start -->
        <span class="icon icon--medium icon--Italian"></span>
        <?php if($restaurant_features): ?>
            <?php foreach($restaurant_features as $restaurant_feature): ?>
                <span class="icon icon--medium icon--<?php echo $feature_icon[$restaurant_feature]; ?>"></span>
            <?php endforeach; ?>
        <?php endif; ?>
    
        </div> <!-- Featured card specific icons container end -->
    
        </div> <!-- Featured card specific icons end -->
    
    <?php endforeach; ?>
    <?php wp_reset_postdata(); ?>
    <?php endif; ?>
    

    or like

    <?php if( $featured_restaurants ): ?>
    <?php foreach ( $featured_restaurants as $featured_restaurant ): ?>
    
    <div class="card__inputs"> <!-- Featured card specific icons start -->
        <?php
        $feature_icon = [
            'alcohol' => "Alcohol",
            'family_friendly' => "Family-Friendly",
            'open_late' => "Open-Late",
            'parking' => "Parking",
        ];
        ?>
        <div class="details u-float-left"> <!-- Featured card specific icons container start -->
        <span class="icon icon--medium icon--Italian"></span>
        <?php if($restaurant_features): ?>
            <?php foreach($restaurant_features as $restaurant_feature): ?>
                <span class="icon icon--medium icon--<?php echo $feature_icon[$restaurant_feature]; ?>"></span>
            <?php endforeach; ?>
        <?php endif; ?>
    
        </div> <!-- Featured card specific icons container end -->
    
        </div> <!-- Featured card specific icons end -->
    
    <?php endforeach; ?>
    <?php wp_reset_postdata(); ?>
    <?php endif; ?>
    

    or get rid of the if statement and use str_replace()

    <?php if( $featured_restaurants ): ?>
    <?php foreach ( $featured_restaurants as $featured_restaurant ): ?>
    
    <div class="card__inputs"> <!-- Featured card specific icons start -->
        <div class="details u-float-left"> <!-- Featured card specific icons container start -->
        <span class="icon icon--medium icon--Italian"></span>
        <?php if($restaurant_features): ?>
            <?php foreach($restaurant_features as $restaurant_feature): ?>
            <?php $icon = str_replace(' ', '-', ucwords(str_replace('_', ' ', $restaurant_feature))); ?>
                <span class="icon icon--medium icon--<?php echo $icon ; ?>"></span>
            <?php endforeach; ?>
        <?php endif; ?>
    
        </div> <!-- Featured card specific icons container end -->
    
        </div> <!-- Featured card specific icons end -->
    
    <?php endforeach; ?>
    <?php wp_reset_postdata(); ?>
    <?php endif; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类