web-dev-qa-db-ja.com

日付と今日の間に投稿を公開する方法

query_posts()を使って日付と今日の間に投稿を公開する方法ですか?

例: 2012-04-01 以降に公開されたすべての投稿

ありがとう

編集:

このクエリ投稿にフィルターの日付を追加するにはどうすればいいですか?

query_posts( array(  
    array('post'),
    'tax_query' => array(
        array(
            'taxonomy' => 'post_format',
            'field' => 'slug',
            'terms' => array('post-format-image')
        )
    ),
    'cat' => '-173',
    'post_status' => 'publish'
) );
9
Steffi

2014年12月23日更新

date_queryクラスのWP_Queryプロパティを使用するより良い方法があります。

$args = array(
    'post_type' => 'post', 
    'tax_query' => array(
        array( 
            'taxonomy'  => 'post_format',
            'field'     => 'slug',
            'terms'     => array( 'post-format-image' )
        )
    ),
    'cat'           => '-173',
    'post_status'   => 'publish',
    'date_query'    => array(
        'column'  => 'post_date',
        'after'   => '- 30 days'
    )
);
$query = new WP_Query( $args );

古い答え

WP_Query()で Timeパラメータを使用する

コーデックスからの引用例:

過去30日からの投稿を返す:

// This takes your current query, that will have the filtering part added to.
$query_string = array(
    'post_type' => 'post', 
    'tax_query' => array(
        array(
            'taxonomy'  => 'post_format',
            'field'     => 'slug',
            'terms'     => array( 'post-format-image' )
        )
    ),
    'cat'           => '-173',
    'post_status'   => 'publish'
);

// Create a new filtering function that will add our where clause to the query
function filter_where( $where = '' ) {
    // posts in the last 30 days
    $where .= " AND post_date > '" . date( 'Y-m-d', strtotime( '-30 days' ) ) . "'";
    return $where;
}

add_filter( 'posts_where', 'filter_where' );
$query = new WP_Query( $query_string );
remove_filter( 'posts_where', 'filter_where' );

編集 (OPの更新された質問に対する回答として)。

query_postsを使用しないでください 。あなたのメインクエリを変更するために上記のテクニックを使うことができます(いくつかの追加の 条件付きで - はホームページです、 'foobar'と呼ばれるページなど)

function wpse52070_filter_where( $where = '' , $query ) {
   if( $query->is_main_query() && is_page( 'foobar' ) ){
      // posts in the last 30 days
      $where .= " AND post_date > '" . date( 'Y-m-d', strtotime( '-30 days' ) ) . "'";
   }

    return $where;
}
add_filter( 'posts_where', 'wpse52070_filter_where' );
22
moraleida

3.7以降ではdate_query http://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters を使用できます。

そのため、渡された引数は次のようになります。

$query_string = array(
      'post_type' => 'post', 
      'date_query' => array(
        'after' => '2012-04-01' 
      ),
      'tax_query' => array(
          array( 
             'taxonomy' => 'post_format',
             'field' => 'slug',
             'terms' => array('post-format-image')
          )
      ),
      'cat' => '-173',
      'post_status' => 'publish'
);
3
Kode

2つの日付の間に投稿をしたい場合は、date_queryパラメータのbeforeとafterパラメータを使います。

$query_string = array(
  'post_type' => 'post', 
  'date_query' => array(
    'column' => 'post_date',
    'after' => '2012-04-01',
    'before' => '2012-04-30' 
  ),
  'tax_query' => array(
      array( 
         'taxonomy' => 'post_format',
         'field' => 'slug',
         'terms' => array('post-format-image')
      )
  ),
  'cat' => '-173',
  'post_status' => 'publish'
);
0
pingle60