うさぎのイラスト

ネットアンサー55備忘録

web技術を書いていきます

WP_Queryの使い方(パラメーター)

-2015年05月31日-
メインクエリーを上書きしないためにもサブクエリーであるWP_Queryタグを使って投稿を呼び出します。
WP_Queryタグの使い方とパラメーターの使い方を紹介します。

投稿タイプを指定する

1    <?php
2$args = array(
3        'post_type' => array(                   //(string / array) - 投稿タイプを指定する。デフォルト値は'post'で、投稿が表示される。
4            'illustrator'                  // - カスタム投稿タイプ (例: movies)
5            ),
6    'posts_per_page' => 6  
7    );
8     
9    $the_query = new WP_Query( $args );
10     
11if ($the_query->have_posts()) :
12  $count = 1;
13  while ($the_query->have_posts()) :
14    $the_query->the_post();
15?>
16        <dt><?php the_time('Y/m/d'); ?></dt>
17        <dd><a href="<?php the_permalink(); ?>">『<?php the_title(); ?>』</a>を投稿しました。</dd>   
18<?php
19    $count++;
20   endwhile;
21endif;
22wp_reset_postdata();
23?>

投稿タイプを指定して、2015年の3月指定する

1    <?php
2$args= array(
3        'post_type' => array(                   //(string / array) - 投稿タイプを指定する。デフォルト値は'post'で、投稿が表示される。
4            'daily'                  // - カスタム投稿タイプ (例: movies)
5            ),
6    'posts_per_page' => 6,
7     'year' => 2015,                         //(int) - 4桁の年 (例 2011)。
8    'monthnum' => 3,                        //(int) - 月を数字で指定(1から12)。
9    
10    );
11     
12    $the_query= new WP_Query( $args);
13     
14if ($the_query->have_posts()) :
15  $count = 1;
16  while ($the_query->have_posts()) :
17    $the_query->the_post();
18?>
19        <dt><?php the_time('Y/m/d'); ?></dt>
20        <dd><a href="<?php the_permalink(); ?>">『<?php the_title(); ?>』</a>を投稿しました。</dd>   
21<?php
22    $count++;
23   endwhile;
24endif;
25wp_reset_postdata();
26?>

投稿タイプを複数指定する

1<?php
2$args= array(
3        'post_type' => array(                   //(string / array) - 投稿タイプを指定する。デフォルト値は'post'で、投稿が表示される。
4            'daily'                  // - カスタム投稿タイプ (例: movies)
5            ),
6    'posts_per_page' => 6,
7     'year' => 2015,                         //(int) - 4桁の年 (例 2011)。
8    'monthnum' => 3,                        //(int) - 月を数字で指定(1から12)。
9    
10    );
11     
12    $the_query= new WP_Query( $args);
13     
14if ($the_query->have_posts()) :
15  $count = 1;
16  while ($the_query->have_posts()) :
17    $the_query->the_post();
18?>
19        <dt><?php the_time('Y/m/d'); ?></dt>
20        <dd><a href="<?php the_permalink(); ?>">『<?php the_title(); ?>』</a>を投稿しました。</dd>   
21<?php
22    $count++;
23   endwhile;
24endif;
25wp_reset_postdata();
26?>

タクソノミーのタームを指定する

1    <?php
2$args = array(
3'tax_query' => array(
4   'relation' => 'OR',    
5            array(
6                'taxonomy' => 'illustrator_cat',
7                'terms' => array( 'conv', 'object'),
8                'field' => 'slug',
9                'operator' => 'IN',
10            ),
11        ),
12    'posts_per_page' => 4,
13    );
14     
15    $the_query = new WP_Query( $args);
16     
17if ($the_query->have_posts()) :
18  $count = 1;
19  while ($the_query->have_posts()) :
20    $the_query->the_post();
21?>
22        <dt><?php the_time('Y/m/d'); ?></dt>
23        <dd><a href="<?php the_permalink(); ?>">『<?php the_title(); ?>』</a>を投稿しました。</dd>   
24<?php
25    $count++;
26   endwhile;
27endif;
28wp_reset_postdata();
29?>


参考サイト:
notnil creation weblog
wordpress私的マニュアル
文系デザイナーの備忘録