Make WordPress Core


Ignore:
Timestamp:
02/20/2021 05:08:24 PM (4 years ago)
Author:
johnbillion
Message:

Docs: Various docblock corrections and improvements.

See #51800

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/load.php

    r50053 r50395  
    417417     * constants to not be checked and the default PHP values for errors
    418418     * 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     *     );
    419437     *
    420438     * @since 4.6.0
Note: See TracChangeset for help on using the changeset viewer.