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 |
|---|---|
| 2701 | ); |
| 2702 | |
| 2703 | /** |
| 2704 | * Filters actionable information to tackle the problem. It can be a link to an external guide. |
| 2705 | * |
| 2706 | * @since 6.6.0 |
| 2707 | * |
| 2708 | * @param string $actions Call to Action to be used to point to the right direction to solve the issue. |
| 2709 | */ |
| 2710 | $result['actions'] = apply_filters( 'site_status_autoloaded_options_action_to_perform', $result['actions'] ); |
| 2711 | return $result; |
| 2712 | } |
| 2713 | |
| 2714 | /** |
| 2715 | * Tests whether search engine indexing is enabled. |
| 2716 | * |
| 2717 | * Surfaces as “good” if `blog_public === 1`, or “recommended” if `blog_public === 0`. |
| 2718 | * |
| 2719 | * @since 6.9.0 |