Changeset 59475
- Timestamp:
- 12/01/2024 06:37:02 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r58927 r59475 477 477 * 478 478 * @since 2.7.0 479 * @since 4.0.0 Added ISO date standard YYYY-MM-DD format. 479 * @since 4.0.0 Replaced the `Y/m/d` format with `Y-m-d` (ISO date standard YYYY-MM-DD). 480 * @since 6.8.0 Added the `d.m.Y` format. 480 481 * 481 482 * @param string[] $default_date_formats Array of default date formats. 482 483 */ 483 $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y' ) ) );484 $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y', 'd.m.Y' ) ) ); 484 485 485 486 $custom = true;
Note: See TracChangeset
for help on using the changeset viewer.