获取当前帖子的日期:
$date = get_the_date(\'Y-m-d\');
从$date变量中获取年、月和日。
$exploded = explode(\'-\', $date);
$year = $exploded[0];
$month = $exploded[1];
$day = $exploded[2];
最后,查询发布日期相同的帖子。
$args = array(
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'date_query\' => array(
array(
\'year\' => $year,
\'month\' => $month,
\'day\' => $day,
),
),
);
$query = new WP_Query( $args );
添加任何查询参数,并根据需要显示查询结果。