LoginSignup
7
5

More than 5 years have passed since last update.

カスタム投稿タイプの特定のターム(タグ)の記事をn件表示

Posted at

作品をアップしてて、いくつかの代表作だけいつもトップページに表示したい

そんな時のメモです

表示条件

カスタム投稿タイプ works
ターム(タグ)名 masterpiece
表示件数 5件

コード

sample

<?php
    $loop = new WP_Query( array( 
        'post_type' => 'works', //カスタム投稿名
        'term' => 'masterpiece', //ターム(タグ)名
        'posts_per_page' => 5 //表示件数( -1 = 全件 )
    ));

    while ( $loop->have_posts() ) : $loop->the_post();
?>

<a href="<?php the_permalink() ?>">
    // サムネイル表示
    <?php the_post_thumbnail(); ?>

  // タイトル表示
    <?php the_title(); ?>
</a>

<?php endwhile; ?>

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5