WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2423 | * @type bool $has_rest Whether the `$test` property points to a REST API endpoint. |
2424 | * @type bool $skip_cron Whether to skip this test when running as cron. |
2425 | * @type callable $async_direct_test A manner of directly calling the test marked as asynchronous, |
2426 | * as the scheduled event can not authenticate, and endpoints |
2427 | * may require authentication. |
2428 | * } |
2429 | * } |
2430 | * } |
2431 | */ |
2432 | $tests = apply_filters( 'site_status_tests', $tests ); |
2433 |
|
2434 | // Ensure that the filtered tests contain the required array keys. |
2435 | $tests = array_merge( |
2436 | array( |
2437 | 'direct' => array(), |
2438 | 'async' => array(), |
2439 | ), |
2440 | $tests |
2441 | ); |