is_new_day()
Whether the publish date of the current post in the loop is different from the publish date of the previous post in the loop.
Return
(int) 1 when new day, 0 if not a new day.
Source
File: wp-includes/functions.php
function is_new_day() {
global $currentday, $previousday;
if ( $currentday != $previousday )
return 1;
else
return 0;
}
Changelog
Version | Description |
---|---|
WP-0.71 | Introduced. |