diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 94e99d1ae6..4b51ee445c 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -605,11 +605,12 @@ function wp_get_http_headers( $url, $deprecated = false ) { } /** - * Whether today is a 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. * * @since 0.71 - * @uses $day Today - * @uses $previousday Previous day + * @global string $currentday The day of the current post in the loop. + * @global string $previousday The day of the previous post in the loop. * * @return int 1 when new day, 0 if not a new day. */