Advertisement
Guest User

ACF Select --> Image

a guest
Jun 23rd, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. $images = array(
  3. 'icon1' => get_template_directory_uri().'/assets/img/icon1.png',
  4. 'icon2' => get_template_directory_uri(). '/assets/img/icon2.png',
  5. );
  6. $values = get_field('icons');
  7. if (is_array($values)) {
  8. foreach ($values as $value) {
  9. ?>
  10. <img src="<?php echo $images[$value] ?>" alt="">
  11. <?php
  12. }
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement