Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. $taxonomy = 'XXX'; // register_taxonomyで指定したタクソノミー名を指定
  3. $terms = get_terms($taxonomy);
  4. foreach ($terms as $term) :
  5. $thumb = get_field('カスタムフィールド名', $taxonomy.'_'.$term->term_id);
  6. $thumb_url = (!empty($thumb['url'])) ? $thumb['url'] : '/img/dummy.png';
  7. ?>
  8. 画像:<img src="<?php echo $thumb_url; ?>">
  9. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement