site_status_autoloaded_options_action_to_perform
Filters actionable information to tackle the problem. It can be a link to an external guide.
Использование
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(строка)
- Call to Action to be used to point to the right direction to solve the issue.
Список изменений
| С версии 6.6.0 | Введена. |
Где вызывается хук
site_status_autoloaded_options_action_to_perform
wp-admin/includes/class-wp-site-health.php 2747
$result['actions'] = apply_filters( 'site_status_autoloaded_options_action_to_perform', $result['actions'] );