0

私は自分のページに将来の日付のみを表示していますが、これはまさに私が望むものであり、今日の日付より前の日付の投稿のみをクエリする方法を見つけようとして掘り下げてきました。

これは現在私のクエリです:

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

何か案は?それが役立つ場合、各投稿はアーティストであり、注目の月、post = month があります。

ありがとう、

ライアン

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 に答える