Definition:
function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) {}
Retrieve the time at which the post was last modified.
Parameters
- string $d: Optional, default is ‘U’. Either ‘G’, ‘U’, or php date format.
- bool $gmt: Optional, default is false. Whether to return the gmt time.
- int|object $post: Optional, default is global post object. A post_id or post object
- bool $translate: Optional, default is false. Whether to translate the result
Return values
returns:Returns timestamp
Defined filters
- get_post_modified_time
apply_filters('get_post_modified_time', $time, $d, $gmt)
Source code
function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { $post = get_post($post); if ( $gmt ) $time = $post->post_modified_gmt; else $time = $post->post_modified; $time = mysql2date($d, $time, $translate); return apply_filters('get_post_modified_time', $time, $d, $gmt); }
1601
No comments yet... Be the first to leave a reply!