wordpress カスタム投稿のタームをカスタムフィールドテンプレートを使用して画像を一覧表示 2012年9月6日 Tag:Wordpress | カスタム投稿 | ターム | 画像 <div class="img-box"> <ul> <?php $args = array( 'post_type' => 'topics', 'taxonomy' => 'info', 'term' => 'event', 'numberposts' => '-1', ); $my_posts = get_posts($args); foreach ( $my_posts as $post ) { setup_postdata($post); ?> <?php $attach_id = get_post_meta($post->ID,"メイン画像",true); $image_info = wp_get