อัพเดท 23 ธันวาคม 2557
มีวิธีที่ดีกว่าโดยใช้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 ()
ตัวอย่างข้อความจาก Codex:
ส่งคืนโพสต์จาก 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' );