関数 get_post_modified_time()
2014/12/25
関数 get_post_modified_time()
定義ファイル :/blog/wp-includes/general-template.php 5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { $post = get_post($post); if ( ! $post ) { return false; } 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 ); } |