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

希望它为你工作

感谢

相关问题