您需要找到帖子的最新日期,并使用该日期构建$current_
字段。
$last_date = $wpdb->get_var("SELECT DATE(MAX(post_date)) FROM {$wpdb->posts} LIMIT 1");
if (!empty($last_date)) {
list($current_year,$current_month,$current_day) = explode(\'-\',$last_date);
query_posts(
"cat=5&year=$current_year&monthnum=$current_month&day=$current_day&order=ASC"
);
}