[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-includes/ -> version.php (source)

   1  <?php
   2  /**
   3   * WordPress Version
   4   *
   5   * Contains version information for the current WordPress release.
   6   *
   7   * @package WordPress
   8   * @since 1.2.0
   9   */
  10  
  11  /**
  12   * The WordPress version string.
  13   *
  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   *
  17   * @global string $wp_version
  18   */
  19  $wp_version = '6.1-alpha-53371';
  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   */
  26  $wp_db_version = 51917;
  27  
  28  /**
  29   * Holds the TinyMCE version.
  30   *
  31   * @global string $tinymce_version
  32   */
  33  $tinymce_version = '49110-20201110';
  34  
  35  /**
  36   * Holds the required PHP version.
  37   *
  38   * @global string $required_php_version
  39   */
  40  $required_php_version = '5.6.20';
  41  
  42  /**
  43   * Holds the required MySQL version.
  44   *
  45   * @global string $required_mysql_version
  46   */
  47  $required_mysql_version = '5.0';


Generated: Thu Mar 28 01:00:02 2024 Cross-referenced by PHPXref 0.7.1