您可以在日期更改时进行测试,只在第一次更改时显示一次。
<?php
$date = 0;
$newDate = true;
if (have_posts()) : while (have_posts()) :
the_post();
if ($date == 0)
$date = the_date();
else if ($date != the_date()) {
$date = the_date();
$newDate = true;
}
if ($newDate)
echo $date . \' \';
the_title();
$newDate = false;
/* rest of the code */
endwhile;
endif;
?>