2017-03-31 67 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

希望它爲你工作

感謝

相關問題