mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-26 10:11:29 +01:00
27994975f9
This includes numerous improvements: - Removes the jazzer name. - Ensures `WordPress` is translatable for consistency with other occurrences in Core. - Changes all instances of `Block Editor` to `block editor` to match the spelling best practices. - Updates the PHP 7.4 compatibility section with more suitable text. - Introduction in `credits.php`, `freedoms.php`, and `privacy.php` have been updated to be consistent with the About page. - Fixes the `aria-current` attribute in tab navigation. Reviewed by SergeyBiryukov, desrosj. Props SergeyBiryukov, audrasjb, desrosj, ryelle, afercia. See #47708. Built from https://develop.svn.wordpress.org/trunk@46572 git-svn-id: http://core.svn.wordpress.org/trunk@46369 1a063a9b-81f0-0310-95a4-ce76da25c4cd
45 lines
769 B
PHP
45 lines
769 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.1.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '5.3-RC1-46572';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 45805;
|
|
|
|
/**
|
|
* Holds the TinyMCE version
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '4960-20190918';
|
|
|
|
/**
|
|
* Holds the required PHP version
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.6.20';
|
|
|
|
/**
|
|
* Holds the required MySQL version
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|