mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-01 19:24:34 +00:00
Docs: Add more information about how to use filters that run before WordPress initialises.
Fixes #50134 git-svn-id: https://develop.svn.wordpress.org/trunk@49489 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -356,9 +356,30 @@ final class WP_Hook implements Iterator, ArrayAccess {
|
||||
/**
|
||||
* Normalizes filters set up before WordPress has initialized to WP_Hook objects.
|
||||
*
|
||||
* The `$filters` parameter should be an array keyed by hook name, with values
|
||||
* containing either:
|
||||
*
|
||||
* - A `WP_Hook` instance
|
||||
* - An array of callbacks keyed by their priorities
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* $filters = array(
|
||||
* 'wp_fatal_error_handler_enabled' => array(
|
||||
* 10 => array(
|
||||
* array(
|
||||
* 'accepted_args' => 0,
|
||||
* 'function' => function() {
|
||||
* return false;
|
||||
* },
|
||||
* ),
|
||||
* ),
|
||||
* ),
|
||||
* );
|
||||
*
|
||||
* @since 4.7.0
|
||||
*
|
||||
* @param array $filters Filters to normalize.
|
||||
* @param array $filters Filters to normalize. See documentation above for details.
|
||||
* @return WP_Hook[] Array of normalized filters.
|
||||
*/
|
||||
public static function build_preinitialized_hooks( $filters ) {
|
||||
|
||||
Reference in New Issue
Block a user