Changeset 50395 for trunk/src/wp-includes/load.php
- Timestamp:
- 02/20/2021 05:08:24 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r50053 r50395 417 417 * constants to not be checked and the default PHP values for errors 418 418 * will be used unless you take care to update them yourself. 419 * 420 * To use this filter you must define a `$wp_filter` global before 421 * WordPress loads, usually in `wp-config.php`. 422 * 423 * Example: 424 * 425 * $GLOBALS['wp_filter'] = array( 426 * 'enable_wp_debug_mode_checks' => array( 427 * 10 => array( 428 * array( 429 * 'accepted_args' => 0, 430 * 'function' => function() { 431 * return false; 432 * }, 433 * ), 434 * ), 435 * ), 436 * ); 419 437 * 420 438 * @since 4.6.0
Note: See TracChangeset
for help on using the changeset viewer.