अद्यतन 23 दिसंबर 2014
वर्ग की 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 );
पुराने ANSWER
WP_Query में समय पैरामीटर का उपयोग करें ()
कोडेक्स से उद्धरण उदाहरण:
पिछले 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' );
संपादित करें
(ओपी के अद्यतन प्रश्न के जवाब में)।
Query_posts का उपयोग करने से बचें । आप अपनी मुख्य क्वेरी को बदलने के लिए उपरोक्त तकनीक का उपयोग कर सकते हैं (कुछ अतिरिक्त शर्तों के अधीन - होम पेज है, एक पेज है जिसे 'फ़ॉबर' आदि कहा जाता है):
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' );