Skip to content

Instantly share code, notes, and snippets.

@tjhole
Last active August 29, 2015 14:08
Show Gist options
  • Save tjhole/8a7989b6c75236b20fb4 to your computer and use it in GitHub Desktop.
Save tjhole/8a7989b6c75236b20fb4 to your computer and use it in GitHub Desktop.
ACF: Random Image
<?php
$gallery = get_field('images');
$rand = array_rand($gallery, 1);
if( $gallery ): ?>
<img src="<?php echo $gallery[$rand]['sizes']['large']; ?>" alt="<?php echo $gallery[$rand]['alt']; ?>" />
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment