mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
bffe95d34c
Affects DocBlocks for the following hooks: * `auth_post_meta_{$meta_key}` * `term_links-$taxonomy` * `customize_render_control_ . $this->id` * `customize_render_panel_{$this->id}` * `customize_render_section_{$this->id}` * `customize_preview_{$this->id}` * `customize_save_ . $this->id_data[ 'base' ]` * `customize_update_ . $this->type` * `customize_value_ . $this->id_data[ 'base' ]` * `customize_sanitize_js_{$this->id}` * `comment_form_field_{$name}` * `comment_{$old_status}_to_{$new_status}` * `comment_{$new_status}_{$comment->comment_type}` * `extra_{$context}_headers` * `get_template_part_{$slug}` * `get_the_generator_{$type}` * `get_{$adjacent}_post_join` * `get_{$adjacent}_post_where` * `get_{$adjacent}_post_sort` * `{$adjacent}_post_rel_link` * `{$adjacent}_post_link` * `{$adjacent}_image_link` * `blog_option_{$option}` * `$permastructname . _rewrite_rules` * `{$type}_template` * `theme_mod_{$name}` * `pre_set_theme_mod_$name` * `current_theme_supports-{$feature}` * `get_user_option_{$option}` * `edit_user_{$field}` * `pre_user_{$field}` * `user_{$field}` See #30552. Built from https://develop.svn.wordpress.org/trunk@30656 git-svn-id: http://core.svn.wordpress.org/trunk@30646 1a063a9b-81f0-0310-95a4-ce76da25c4cd
36 lines
629 B
PHP
36 lines
629 B
PHP
<?php
|
|
/**
|
|
* The WordPress version string
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '4.1-beta2-30656';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 30133;
|
|
|
|
/**
|
|
* Holds the TinyMCE version
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '4106-20141119';
|
|
|
|
/**
|
|
* Holds the required PHP version
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.2.4';
|
|
|
|
/**
|
|
* Holds the required MySQL version
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|