MEU SONHO NA VASCOTV – ARTHUR | VASCOTV
Fonte: Canal oficial do Vasco no Youtube
// Relative day label: Hoje / Ontem / Amanhã / weekday fallback if (!function_exists('mv_ge_rel_day_label')){ function mv_ge_rel_day_label($ts){ $now = current_time('timestamp'); // WP local tz $todayYmd = date('Y-m-d', $now); $thatYmd = date('Y-m-d', $ts); $today0 = strtotime($todayYmd.' 00:00:00'); $that0 = strtotime($thatYmd.' 00:00:00'); $days = intval(($that0 - $today0) / DAY_IN_SECONDS); if ($days === 0) return __('Hoje', 'meuvasco'); if ($days === -1) return __('Ontem', 'meuvasco'); if ($days === 1) return __('Amanhã', 'meuvasco'); // Fallback to weekday localized return mv_ge_rel_day_label($ts); } }