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 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏