0
|
1 |
<?php |
|
2 |
/** |
9
|
3 |
* WordPress Version |
|
4 |
* |
|
5 |
* Contains version information for the current WordPress release. |
|
6 |
* |
|
7 |
* @package WordPress |
18
|
8 |
* @since 1.2.0 |
9
|
9 |
*/ |
|
10 |
|
|
11 |
/** |
16
|
12 |
* The WordPress version string. |
0
|
13 |
* |
19
|
14 |
* Holds the current version number for WordPress core. Used to bust caches |
|
15 |
* and to enable development mode for scripts when running from the /src directory. |
|
16 |
* |
0
|
17 |
* @global string $wp_version |
|
18 |
*/ |
19
|
19 |
$wp_version = '6.0.2'; |
0
|
20 |
|
|
21 |
/** |
|
22 |
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |
|
23 |
* |
|
24 |
* @global int $wp_db_version |
|
25 |
*/ |
19
|
26 |
$wp_db_version = 53496; |
0
|
27 |
|
|
28 |
/** |
16
|
29 |
* Holds the TinyMCE version. |
0
|
30 |
* |
|
31 |
* @global string $tinymce_version |
|
32 |
*/ |
18
|
33 |
$tinymce_version = '49110-20201110'; |
0
|
34 |
|
|
35 |
/** |
16
|
36 |
* Holds the required PHP version. |
0
|
37 |
* |
|
38 |
* @global string $required_php_version |
|
39 |
*/ |
9
|
40 |
$required_php_version = '5.6.20'; |
0
|
41 |
|
|
42 |
/** |
16
|
43 |
* Holds the required MySQL version. |
0
|
44 |
* |
|
45 |
* @global string $required_mysql_version |
|
46 |
*/ |
|
47 |
$required_mysql_version = '5.0'; |