WordPress query_posts显示过去的日期

时间:2012-06-05 17:23:55

标签: wordpress date post

我的页面只显示未来的日期,这正是我想要的,我一直在努力寻找一种只查询的方式:在今天日期之前过时的帖子。

这是我目前的查询:

<?php
$args=array(
    'post_type' => 'artists',
    'orderby'   => 'ecpt_featured_month',
    'order' => 'ASC',
    'post_status' => 'future'
);

有什么想法吗?如果它有帮助,每个帖子都是艺术家,他们有一个特色月份,post = month。

谢谢,

赖安

1 个答案:

答案 0 :(得分:0)

考虑到“ecpt_featured_month”是一个自定义字段,请使用此字段:

$args=array(
    'post_type' => 'artists',
    'orderby'   => 'meta_value',
    'meta_key' => 'ecpt_featured_month'
    'order' => 'ASC',
    'post_status' => 'future'
);
$loop = new WP_Query( $args);
while ( $loop->have_posts() ) : $loop->the_post(); 
// write the general code to display the post's title and date
endwhile;