Skip to content

Instantly share code, notes, and snippets.

@yankiara
Created December 31, 2019 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yankiara/003aa44ad810592c1137befe480cadfe to your computer and use it in GitHub Desktop.
Save yankiara/003aa44ad810592c1137befe480cadfe to your computer and use it in GitHub Desktop.
Output ACF checkbox field seleted items
<?php
$items = get_field('FIELD_NAME');
if( $items ): ?>
<ul>
<?php foreach( $items as $item ): ?>
<li><?php echo $item; ?></li>
<?php endforeach; ?>
</ul>
<?php endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment