function doo_post_date($format = false, $echo = true){
setlocale(LC_TIME, 'tr_TR');
if(!is_string($format) || empty($format)) {
$format = '%e %B, %Y';
}
$date = sprintf( __d('%1$s') , get_the_time($format) );
if($echo){
echo $date;
} else {
return $date;
}
}Bu şekilde sonuç nedir?