News
-
function get_the_date( $format = '', $post = null ) {
$post = get_post( $post );if ( ! $post ) {
return false;
}$_format = ! empty( $format ) ? $format : get_option( 'date_format' );
$the_date = get_post_time( $_format, false, $post, true );
return apply_filters( 'get_the_date', $the_date, $format, $post );
}
?>