duanjiu4498 2017-06-13 02:08
浏览 22
已采纳

显示前面ACF(Wordpress)的复选框值

I'm having some trouble trying to display checkboxes values created with ACF. I have a group of 12 checkboxes made with ACF, where each checkbox is a month: jan : Jan / feb : Feb / mar : Mar / etc.

What i need to achieve is to display all of those 12 values in the frontend, with a particular CSS class if the month has been checked in the backend. For example, if the user checks "Jan", "Apr", "Jul" and "Sep":

<span class="selected">Jan</span>
<span>Feb</span>
<span>Mar</span>
<span class="selected">Apr</span>
<span>May</span>
<span>Jun</span>
<span class="selected">Jul</span>
<span>Ago</span>
<span class="selected">Sep</span>
<span>Oct</span>
<span>Nov</span>
<span>Dec</span>

Using the example code from the docs (https://www.advancedcustomfields.com/resources/checkbox/), I'm only getting the selected months but not all months in the frontend:

<span>Jan</span>
<span>Apr</span>
<span>Jul</span>
<span>Sep</span>
  • 写回答

1条回答 默认 最新

  • duanjia6959 2017-06-13 05:56
    关注

    Please check below code and output it helps you.

    <?php $allCheckbox = get_field('month_checked_boxes'); //Checked value from backend
    
    $field_key = "field_593f77cdc5068"; //Get value using key
    $post_id = get_the_ID();
    $field = get_field_object($field_key, $post_id);
    foreach($field['choices'] as $lab => $val){
    if(in_array($val, $allCheckbox)){
        $checked = 'checked = "checked"';   
        $enable = '';       
    } else {
        $checked = '';
        $enable = 'disabled=""';
    } ?>
    <input type="checkbox" name="month" id="month" value="<?php echo $lab; ?>" <?php echo $enable; ?> <?php echo $checked; ?> /><?php echo $val; ?><br>
    

    Please change field key as par your checkbox field from ACF. Also check output below.

    output

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作