get_post_modified_time [ WordPress Function ]
get_post_modified_time ( $d = 'U', $gmt = false, $post = null, $translate = false )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: get_the_modified_time, get_the_modified_date, the_modified_time, get_lastpostmodified, get_post_time
Retrieve the time at which the post was last modified.
Source
<?php
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);
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- get_post_modified_time Wordpress hook details -- Adam Brown ...
WordPress version history for get_post_modified_time ... We find related hooks using word stems. get_post_modified_time has 3 significant word stem(s): post ...
adambrown.info - get_post_modified_time | A HitchHackers guide through WordPress
Feb 12, 2011 ... function get_post_modified_time( $d = 'U', $gmt = false, $post = null, ... $translate ); return apply_filters('get_post_modified_time', $time, $d, ...
hitchhackerguide.com - get_post_modified_time (WordPress Function) - WPSeek.com
WordPress lookup for get_post_modified_time, a WordPress Function. wpseek. com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - Atom feed entry updated field should use get_post_modified_time, not
The file wp-includes/feed-atom.php in WordPress 2.2 contains code for generating an Atom feed. (In WordPress 2.0, the code is in the file wp_atom.php.) ...
core.trac.wordpress.org