カスタム分類法を使用してページを作成し、以下の名前/タイトル/スラッグで画像を呼び出したい、上記の私のコード、助けてくれてありがとう!
<?php
$types = get_terms( array(
'taxonomy' => 'material',
'hide_empty' => true,
) );
get_header(); ?>
//*html code*//
<?php foreach($types as $type) {
$image = get_field('image', 'material_' . $type->term_id . '' );
if ( has_term( $type->term_id, 'material')) {
echo '<img src="' . $image . '" /> ';
}
}?>