apply_filters( ‘get_the_time’, string|int $the_time, string $format, WP_Post $post )

In this article

Filters the time a post was written.

Parameters

$the_timestring|int
Formatted date string or Unix timestamp if $format is 'U' or 'G'.
$formatstring
Format to use for retrieving the time the post was written. Accepts 'G', 'U', or PHP date format.
$postWP_Post
Post object.

Source

return apply_filters( 'get_the_time', $the_time, $format, $post );

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.