Add ISO date standard YYYY-MM-DD format to general settings.
props mattheweppelsheimer. fixes #28447. git-svn-id: https://develop.svn.wordpress.org/trunk@28820 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ddaf46505d
commit
b1fd1dbbcf
@ -232,10 +232,11 @@ if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists
|
||||
* Filter the default date formats.
|
||||
*
|
||||
* @since 2.7.0
|
||||
* @since 4.0.0 Added ISO date standard YYYY-MM-DD format.
|
||||
*
|
||||
* @param array $default_date_formats Array of default date formats.
|
||||
*/
|
||||
$date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y/m/d', 'm/d/Y', 'd/m/Y' ) ) );
|
||||
$date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y/m/d', 'm/d/Y', 'd/m/Y', 'Y-m-d' ) ) );
|
||||
|
||||
$custom = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user