0

我的页面只显示我想要的未来日期,我一直在寻找一种只查询的方法:日期早于今天的帖子。

这是目前我的查询:

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

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

谢谢,

瑞安

4

1 回答 1

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; 
于 2012-06-05T17:55:59.340 回答