mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-07 09:49:04 +00:00
Docs: Clarify the return descriptions for get_the_time(), get_post_time(), and get_post_modified_time() to specify when an integer in the form of a Unix timestamp should be expected.
See [30674]. See #30989. git-svn-id: https://develop.svn.wordpress.org/trunk@37265 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2303,7 +2303,7 @@ function the_time( $d = '' ) {
|
||||
* was written. Either 'G', 'U', or php date format defaults
|
||||
* to the value specified in the time_format option. Default empty.
|
||||
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object.
|
||||
* @return false|string Formatted date string or Unix timestamp. False on failure.
|
||||
* @return string|int|false Formatted date string or Unix timestamp if `$id` is 'U' or 'G'. False on failure.
|
||||
*/
|
||||
function get_the_time( $d = '', $post = null ) {
|
||||
$post = get_post($post);
|
||||
@@ -2341,7 +2341,7 @@ function get_the_time( $d = '', $post = null ) {
|
||||
* @param bool $gmt Optional. Whether to retrieve the GMT time. Default false.
|
||||
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object.
|
||||
* @param bool $translate Whether to translate the time string. Default false.
|
||||
* @return false|string|int Formatted date string or Unix timestamp. False on failure.
|
||||
* @return string|int|false Formatted date string or Unix timestamp if `$id` is 'U' or 'G'. False on failure.
|
||||
*/
|
||||
function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) {
|
||||
$post = get_post($post);
|
||||
@@ -2428,7 +2428,7 @@ function get_the_modified_time($d = '') {
|
||||
* @param bool $gmt Optional. Whether to retrieve the GMT time. Default false.
|
||||
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object.
|
||||
* @param bool $translate Whether to translate the time string. Default false.
|
||||
* @return false|string Formatted date string or Unix timestamp. False on failure.
|
||||
* @return string|int|false Formatted date string or Unix timestamp if `$id` is 'U' or 'G'. False on failure.
|
||||
*/
|
||||
function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) {
|
||||
$post = get_post($post);
|
||||
|
||||
Reference in New Issue
Block a user