apply_filters( 'get_the_time', string|int $the_time, string $format, WP_Post $post )
- Since
- 1.5.0
Filters the time of the post.
Compatibility
- WordPress
- since 1.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$the_timestring|int- Formatted date string or Unix timestamp if
$formatis '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.
Where this hook fires · 1
wp-includes/general-template.php:3078get_the_time()
Source code
* * @param string|int $the_time Formatted date string or Unix timestamp if `$format` is 'U' or 'G'. * @param string $format Format to use for retrieving the time the post * was written. Accepts 'G', 'U', or PHP date format. * @param WP_Post $post Post object. */ return apply_filters( 'get_the_time', $the_time, $format, $post );} /** * Retrieves the localized time of the post. * * @since 2.0.0Changelog
Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.