2017-03-31 13 views

答えて

0

クエリの基本コードは次のとおりです。

<?php 
$args = array(
    'post_type' => 'post', 
    'posts_per_page' => -1, 
    'order'   => 'DESC', 
    'orderby'  => 'date', 
    'date_query' => array(
     array(
      'column' => 'post_date_gmt', 
      'before' => '2 year ago', 
     ), 
    ), 
); 
$query = new WP_Query($args); 
if($query->have_posts()): while($query->have_posts()): $query->the_post(); 
    /* 
    * Your HTML styles to display the post 
    */ 
    ?> 
    <h1><?php the_title(); ?></h1> 
    <p><?php the_content(); ?></p> 
<?php 
endwhile; 
wp_reset_postdata(); 
endif; 
?> 

さらに詳しい情報については、次のドキュメントを参照してください。

Query in WP Date

はあなた

おかげ

のためにその作品を願っています
関連する問題