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 |
|---|---|
| 2677 | ); |
| 2678 | |
| 2679 | /** |
| 2680 | * Filters actionable information to tackle the problem. It can be a link to an external guide. |
| 2681 | * |
| 2682 | * @since 6.6.0 |
| 2683 | * |
| 2684 | * @param string $actions Call to Action to be used to point to the right direction to solve the issue. |
| 2685 | */ |
| 2686 | $result['actions'] = apply_filters( 'site_status_autoloaded_options_action_to_perform', $result['actions'] ); |
| 2687 | return $result; |
| 2688 | } |
| 2689 | |
| 2690 | /** |
| 2691 | * Returns a set of tests that belong to the site status page. |
| 2692 | * |
| 2693 | * Each site status test is defined here, they may be `direct` tests, that run on page load, or `async` tests |
| 2694 | * which will run later down the line via JavaScript calls to improve page performance and hopefully also user |
| 2695 | * experiences. |