<ul>
<?php
$custom_posts = get_posts(array(
'post_type' => '投稿タイプ名', // 投稿タイプ
'posts_per_page' => -1, // 表示件数
'orderby' => 'date', // 表示順の基準
'order' => 'ASC', // 昇順・降順
'tax_query' => array(
array(
'taxonomy' => 'タクソノミー名', //タクソノミーを指定
'field' => 'slug', //ターム名をスラッグで指定する
'terms' => 'ターム名', //表示したいタームをスラッグで指定
'operator' => 'IN'
),
)
));
global $post;
if($custom_posts): foreach($custom_posts as $post): setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>">
<h5><?php the_title(); ?></h5>
<p class="image"><?php the_post_thumbnail('post-thumbnails'); ?></p>
</a>
</li>
<?php endforeach; wp_reset_postdata(); endif; ?>
</ul>
目次
コメント