Support

Account

Home Forums General Issues Turn subfield radio button options into icons Reply To: Turn subfield radio button options into icons

  • Hi @Ailsa_C

    You can do this like so:

    
    <?php
    
    $type = get_sub_field(‘event_type’);
    
    ?>
    <i class="icon-<?php echo $type; ?>"></i>
    

    This will produce an element with a class containing the $type. You can then style this with CSS to add the icon background image

    Thanks
    E