General: Rename `wp_in_development_mode()` to `wp_is_development_mode()`.
This changes the function name for the helper function to check whether the current environment is running with the `WP_DEVELOPMENT_MODE` constant set to be more consistent with similar functions in core, like `wp_is_maintenance_mode()` and `wp_is_recover_mode()`. Props flixos90, swissspidy, costdev, peterwilson, robinwpdeveloper, SergeyBiryukov, joemcgill. See 57487. Built from https://develop.svn.wordpress.org/trunk@56249 git-svn-id: http://core.svn.wordpress.org/trunk@55761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6ba79df9c4
commit
018821ff9a
|
@ -44,7 +44,7 @@ function register_core_block_style_handles() {
|
||||||
* Ignore transient cache when the development mode is set to 'core'. Why? To avoid interfering with
|
* Ignore transient cache when the development mode is set to 'core'. Why? To avoid interfering with
|
||||||
* the core developer's workflow.
|
* the core developer's workflow.
|
||||||
*/
|
*/
|
||||||
if ( ! wp_in_development_mode( 'core' ) ) {
|
if ( ! wp_is_development_mode( 'core' ) ) {
|
||||||
$transient_name = 'wp_core_block_css_files';
|
$transient_name = 'wp_core_block_css_files';
|
||||||
$files = get_transient( $transient_name );
|
$files = get_transient( $transient_name );
|
||||||
if ( ! $files ) {
|
if ( ! $files ) {
|
||||||
|
|
|
@ -5234,7 +5234,7 @@ function wp_get_global_styles_svg_filters() {
|
||||||
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
||||||
* developer's workflow.
|
* developer's workflow.
|
||||||
*/
|
*/
|
||||||
$can_use_cached = ! wp_in_development_mode( 'theme' );
|
$can_use_cached = ! wp_is_development_mode( 'theme' );
|
||||||
$cache_group = 'theme_json';
|
$cache_group = 'theme_json';
|
||||||
$cache_key = 'wp_get_global_styles_svg_filters';
|
$cache_key = 'wp_get_global_styles_svg_filters';
|
||||||
if ( $can_use_cached ) {
|
if ( $can_use_cached ) {
|
||||||
|
|
|
@ -69,7 +69,7 @@ function wp_get_global_settings( $path = array(), $context = array() ) {
|
||||||
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
||||||
* developer's workflow.
|
* developer's workflow.
|
||||||
*/
|
*/
|
||||||
$can_use_cached = ! wp_in_development_mode( 'theme' );
|
$can_use_cached = ! wp_is_development_mode( 'theme' );
|
||||||
|
|
||||||
$settings = false;
|
$settings = false;
|
||||||
if ( $can_use_cached ) {
|
if ( $can_use_cached ) {
|
||||||
|
@ -152,7 +152,7 @@ function wp_get_global_stylesheet( $types = array() ) {
|
||||||
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
||||||
* developer's workflow.
|
* developer's workflow.
|
||||||
*/
|
*/
|
||||||
$can_use_cached = empty( $types ) && ! wp_in_development_mode( 'theme' );
|
$can_use_cached = empty( $types ) && ! wp_is_development_mode( 'theme' );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* By using the 'theme_json' group, this data is marked to be non-persistent across requests.
|
* By using the 'theme_json' group, this data is marked to be non-persistent across requests.
|
||||||
|
@ -251,7 +251,7 @@ function wp_get_global_styles_custom_css() {
|
||||||
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
* Ignore cache when the development mode is set to 'theme', so it doesn't interfere with the theme
|
||||||
* developer's workflow.
|
* developer's workflow.
|
||||||
*/
|
*/
|
||||||
$can_use_cached = ! wp_in_development_mode( 'theme' );
|
$can_use_cached = ! wp_is_development_mode( 'theme' );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* By using the 'theme_json' group, this data is marked to be non-persistent across requests.
|
* By using the 'theme_json' group, this data is marked to be non-persistent across requests.
|
||||||
|
@ -360,7 +360,7 @@ function wp_theme_has_theme_json() {
|
||||||
* Ignore static cache when the development mode is set to 'theme', to avoid interfering with
|
* Ignore static cache when the development mode is set to 'theme', to avoid interfering with
|
||||||
* the theme developer's workflow.
|
* the theme developer's workflow.
|
||||||
*/
|
*/
|
||||||
! wp_in_development_mode( 'theme' )
|
! wp_is_development_mode( 'theme' )
|
||||||
) {
|
) {
|
||||||
return $theme_has_support[ $stylesheet ];
|
return $theme_has_support[ $stylesheet ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -280,7 +280,7 @@ function wp_get_environment_type() {
|
||||||
* It does not affect debugging output, but rather functional nuances in WordPress.
|
* It does not affect debugging output, but rather functional nuances in WordPress.
|
||||||
*
|
*
|
||||||
* This function retrieves the currently set development mode value. To check whether
|
* This function retrieves the currently set development mode value. To check whether
|
||||||
* a specific development mode is enabled, use wp_in_development_mode().
|
* a specific development mode is enabled, use wp_is_development_mode().
|
||||||
*
|
*
|
||||||
* @since 6.3.0
|
* @since 6.3.0
|
||||||
*
|
*
|
||||||
|
@ -325,7 +325,7 @@ function wp_get_development_mode() {
|
||||||
* @param string $mode Development mode to check for. Either 'core', 'plugin', 'theme', or 'all'.
|
* @param string $mode Development mode to check for. Either 'core', 'plugin', 'theme', or 'all'.
|
||||||
* @return bool True if the given mode is covered by the current development mode, false otherwise.
|
* @return bool True if the given mode is covered by the current development mode, false otherwise.
|
||||||
*/
|
*/
|
||||||
function wp_in_development_mode( $mode ) {
|
function wp_is_development_mode( $mode ) {
|
||||||
$current_mode = wp_get_development_mode();
|
$current_mode = wp_get_development_mode();
|
||||||
if ( empty( $current_mode ) ) {
|
if ( empty( $current_mode ) ) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-beta4-56248';
|
$wp_version = '6.3-beta4-56249';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue