Changeset 56249 for trunk/src/wp-includes/load.php
- Timestamp:
- 07/17/2023 02:48:48 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/load.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r56245 r56249 281 281 * 282 282 * This function retrieves the currently set development mode value. To check whether 283 * a specific development mode is enabled, use wp_i n_development_mode().283 * a specific development mode is enabled, use wp_is_development_mode(). 284 284 * 285 285 * @since 6.3.0 … … 326 326 * @return bool True if the given mode is covered by the current development mode, false otherwise. 327 327 */ 328 function wp_i n_development_mode( $mode ) {328 function wp_is_development_mode( $mode ) { 329 329 $current_mode = wp_get_development_mode(); 330 330 if ( empty( $current_mode ) ) {
Note: See TracChangeset
for help on using the changeset viewer.