関数 get_the_date()
2014/12/25
関数 get_the_date()
定義ファイル :/blog/wp-includes/general-template.php 4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function get_the_date( $d = '', $post = null ) { $post = get_post( $post ); if ( ! $post ) { return false; } if ( '' == $d ) { $the_date = mysql2date( get_option( 'date_format' ), $post->post_date ); } else { $the_date = mysql2date( $d, $post->post_date ); } return apply_filters( 'get_the_date', $the_date, $d, $post ); } |