Definition:
function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { // returns timestamp
Retrieve the time at which the post was written.
Parameters
- string $d: Optional Either ‘G’, ‘U’, or php date format.
- bool $gmt: Optional, default is false. Whether to return the gmt time.
- int|object $post: Optional post ID or object. Default is global $post object.
- bool $translate: Whether to translate the time string
Defined filters
- get_post_time
apply_filters('get_post_time', $time, $d, $gmt)
Source code
function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { // returns timestamp
$post = get_post($post);
if ( $gmt )
$time = $post->post_date_gmt;
else
$time = $post->post_date;
$time = mysql2date($d, $time, $translate);
return apply_filters('get_post_time', $time, $d, $gmt);
}
1619

February 12, 2011 


No comments yet... Be the first to leave a reply!