site_status_autoloaded_options_action_to_perform
Filters actionable information to tackle the problem. It can be a link to an external guide.
Usage
add_filter( 'site_status_autoloaded_options_action_to_perform', 'wp_kama_site_status_autoloaded_options_action_to_perform_filter' );
/**
* Function for `site_status_autoloaded_options_action_to_perform` filter-hook.
*
* @param string $actions Call to Action to be used to point to the right direction to solve the issue.
*
* @return string
*/
function wp_kama_site_status_autoloaded_options_action_to_perform_filter( $actions ){
// filter...
return $actions;
}
- $actions(string)
- Call to Action to be used to point to the right direction to solve the issue.
Changelog
| Since 6.6.0 | Introduced. |
Where the hook is called
site_status_autoloaded_options_action_to_perform
wp-admin/includes/class-wp-site-health.php 2710
$result['actions'] = apply_filters( 'site_status_autoloaded_options_action_to_perform', $result['actions'] );