Thay đổi format ngày tháng
1 2 3 4 5 6 7 8 9 10 11 |
/** * Filter to modify the check-in date format * * @param string $date_format The default date format * @return string Modified date format */ function pwp_custom_checkin_date_format($date_format) { // Change the date format to 'd-m-Y' (day-month-year) return 'd-m-Y'; } add_filter('pwp_checkin_date_format', 'pwp_custom_checkin_date_format'); |