1502 | | * @param string $d Optional Either 'G', 'U', or php date format defaults to the value specified in the time_format option. |
1503 | | * @param int|object $post Optional post ID or object. Default is global $post object. |
1504 | | * @return string |
| 1502 | * @param string $d Optional. Format to use for retrieving the time the post |
| 1503 | * was written. Either 'G', 'U', or php date format defaults |
| 1504 | * to the value specified in the time_format option. Default empty. |
| 1505 | * @param int|WP_Post $post Optional. WP_Post object or ID. Default is global |
| 1506 | * $post object. |
| 1507 | * @return string|int Formatted date string, or Unix timestamp. |
1521 | | * @param string $d Optional Either 'G', 'U', or php date format. |
1522 | | * @param bool $gmt Optional, default is false. Whether to return the gmt time. |
1523 | | * @param int|object $post Optional post ID or object. Default is global $post object. |
1524 | | * @param bool $translate Whether to translate the time string |
1525 | | * @return string |
| 1524 | * @param string $d Optional. Format to use for retrieving the time the post |
| 1525 | * was written. Either 'G', 'U', or php date format. Default 'U'. |
| 1526 | * @param bool $gmt Optional. Whether to retrieve the GMT time. |
| 1527 | * Default false. |
| 1528 | * @param int|WP_Post $post Optional. WP_Post object or ID. Default is global |
| 1529 | * $post object. |
| 1530 | * @param bool $translate Whether to translate the time string. Default false. |
| 1531 | * @return string|int Formatted date string, or Unix timestamp. |