version.php 789 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * WordPress Version
  4. *
  5. * Contains version information for the current WordPress release.
  6. *
  7. * @package WordPress
  8. * @since 1.1.0
  9. */
  10. /**
  11. * The WordPress version string
  12. *
  13. * @global string $wp_version
  14. */
  15. $wp_version = '5.3';
  16. /**
  17. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
  18. *
  19. * @global int $wp_db_version
  20. */
  21. $wp_db_version = 45805;
  22. /**
  23. * Holds the TinyMCE version
  24. *
  25. * @global string $tinymce_version
  26. */
  27. $tinymce_version = '4960-20190918';
  28. /**
  29. * Holds the required PHP version
  30. *
  31. * @global string $required_php_version
  32. */
  33. $required_php_version = '5.6.20';
  34. /**
  35. * Holds the required MySQL version
  36. *
  37. * @global string $required_mysql_version
  38. */
  39. $required_mysql_version = '5.0';
  40. $wp_local_package = 'zh_CN';