Skip to content

Instantly share code, notes, and snippets.

@traversal
Last active August 29, 2015 14:11
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 traversal/727a30139046e962a426 to your computer and use it in GitHub Desktop.
Save traversal/727a30139046e962a426 to your computer and use it in GitHub Desktop.
Shuffle collection
<?php
if ($choices = $wf->the->has("sc_fieldset_choices")) :
$items = $choices->items();
shuffle( $items );
?>
<?php foreach ($items as $choice) : ?>
<?php echo $choice->sc_choice_01; ?>
<?php endforeach; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment