Support

Account

Home Forums General Issues Remove whitespace Reply To: Remove whitespace

  • I forgot to show you the code I use to display the field:

    <?php $colore = get_field(‘colore’);
    if( $colore ): ?>
    <?php foreach( $colore as $colore ): ?>
    <span class=”color-<?php echo $colore; ?>”></span>
    <?php endforeach; ?>
    <?php endif; ?>