Skip to content

Instantly share code, notes, and snippets.

@david-strejc
Created May 7, 2020 18:19
Show Gist options
  • Save david-strejc/3127baf42e981805182d72d768aae3b0 to your computer and use it in GitHub Desktop.
Save david-strejc/3127baf42e981805182d72d768aae3b0 to your computer and use it in GitHub Desktop.
add_shortcode( 'field_name', function () {
$values = get_field('field_name');
if($values)
{
echo '<ul>';
foreach($values as $value)
{
echo '<li>' . $value . '</li>';
}
echo '</ul>';
}
} );
@david-strejc
Copy link
Author

Replace field_name with your desired variable and use [field_name] in WP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment