get_posts不超过X天 - Wordpress

时间:2013-06-07 23:29:26

标签: php arrays wordpress posts

在我的Wordpress网站中,我使用了这个get_posts代码:

get_posts(
        array (
            'numberposts' => 5,
            'orderby'=>'comment_count',
            'order'=>'DESC',
            'post_type'   => array ( 'post' )
        )

如何过滤它以使帖子不超过10天?所以它应该只列出过去10天的帖子。

2 个答案:

答案 0 :(得分:27)

从3.7开始,您可以使用date_query http://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters

所以它看起来像:

$args = array(
    'posts_per_page' => 5,
    'post_type' => 'post',
    'orderby' => 'comment_count',
    'order' => 'DESC',
    'date_query' => array(
        'after' => date('Y-m-d', strtotime('-10 days')) 
    )
); 
$posts = get_posts($args);

答案 1 :(得分:2)

The exemple from the doc应该可以正常工作。 get_posts()在场景后面使用WP_Query()来发出实际请求。对于您的情况,修改后的示例应如下所示:

// 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('-10 days')) . "'";
    return $where;
}

add_filter( 'posts_where', 'filter_where' );
$query = get_posts(array (
            'numberposts' => 5,
            'orderby'=>'comment_count',
            'order'=>'DESC',
            'post_type'   => array ( 'post' )
         ));
remove_filter( 'posts_where', 'filter_where' );