mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-12 03:13:29 +01:00
fba385feef
This updates the version of each default theme to the following versions: - Twenty Ten: `4.1` - Twenty Eleven: `4.6` - Twenty Twelve: `4.2` - Twenty Thirteen: `4.1` - Twenty Fourteen: `3.9` - Twenty Fifteen: `3.7` - Twenty Sixteen: `3.2` - Twenty Seventeen: `3.6` - Twenty Nineteen: `2.8` - Twenty Twenty: `2.6` - Twenty Twenty-One: `2.2` - Twenty Twenty-Two: `1.7` - Twenty Twenty-Three: `1.4` - Twenty Twenty-Four: `1.1` These versions will released in coordination with WordPress 6.5. Props sabernhardt, desrosj, kushang78, mukesh27, huzaifaalmesbah, shailu25, poena. Fixes #59816. Built from https://develop.svn.wordpress.org/trunk@57886 git-svn-id: http://core.svn.wordpress.org/trunk@57387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
48 lines
940 B
PHP
48 lines
940 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.2.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string.
|
|
*
|
|
* Holds the current version number for WordPress core. Used to bust caches
|
|
* and to enable development mode for scripts when running from the /src directory.
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '6.6-alpha-57886';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 57155;
|
|
|
|
/**
|
|
* Holds the TinyMCE version.
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '49110-20201110';
|
|
|
|
/**
|
|
* Holds the required PHP version.
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '7.0.0';
|
|
|
|
/**
|
|
* Holds the required MySQL version.
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.5.5';
|