wordpress 特定タームの中のカスタムフィールドの値で絞りこんで、一覧表示する方法
<?php
$args = Array(
'post_type' => 'copy',
'taxonomy' => 'copylist',
'term' => 'new',
'posts_per_page' => 3,
'meta_key' => 'メーカー',
'meta_value' => 'リコー'
);
$the_query = new WP_Query($args);
if($the_query -> have_posts()):
while($the_query -> have_posts()): $the_query -> the_post(); ?>
<li><a href="a">
<p class="img"><?php echo wp_get_attachment_image(get_post_meta($post->ID, 'img1', true),'thumbnail'); ?></p>
<p><?php echo get_post_meta($post->ID,"メーカー",true); ?></p>
<hr>
<p class="gray"><?php the_title(); ?></p></a>
</li>
<?php endwhile;
endif;
wp_reset_postdata(); ?>