function wph_human_date($hdate = '') {
if (!is_admin()) {
$hdate = human_time_diff(get_the_time('U'),
current_time('timestamp')) . ' назад';
}
return $hdate;
}
add_filter('get_the_date', 'wph_human_date');
function wph_human_date($hdate = '') {
if (!is_admin()) {
$post_date = get_the_time('d.m.Y');
$current_date = date('d.m.Y');
if ($post_date === $current_date) {
$hdate = 'сегодня';
} elseif ($post_date === date('d.m.Y', strtotime('-1 day', strtotime($current_date)))) {
$hdate = 'вчера';
} else {
$hdate = $post_date;
}
}
return $hdate;
}
add_filter('get_the_date', 'wph_human_date');