您可以使用date_query
部分WP_Query
. 下面是一个示例:
$args = array (
\'post_type\' => array( \'post\' ),
\'post_status\' => array( \'publish\' ),
\'category_name\' => \'airing\', //<-- N.B. This is for a category slug!
\'date_query\' => array(
array(
\'column\' => \'post_modified_gmt\',
\'after\' => \'today\',
\'inclusive\' => true
),
)
);
$query = new WP_Query( $args );
这应该给你
wp_posts.post_modified_gmt >= \'2015-09-24 00:00:00\'
在生成的SQL查询中,如果今天是9月24日。2015年。