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 |
---|---|
2698 | * @type bool $has_rest Whether the `$test` property points to a REST API endpoint. |
2699 | * @type bool $skip_cron Whether to skip this test when running as cron. |
2700 | * @type callable $async_direct_test A manner of directly calling the test marked as asynchronous, |
2701 | * as the scheduled event can not authenticate, and endpoints |
2702 | * may require authentication. |
2703 | * } |
2704 | * } |
2705 | * } |
2706 | */ |
2707 | $tests = apply_filters( 'site_status_tests', $tests ); |
2708 |
|
2709 | // Ensure that the filtered tests contain the required array keys. |
2710 | $tests = array_merge( |
2711 | array( |
2712 | 'direct' => array(), |
2713 | 'async' => array(), |
2714 | ), |
2715 | $tests |
2716 | ); |