site_status_autoloaded_options_action_to_perform filter-hookWP 6.6.0

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

WP_Site_Health::get_test_autoloaded_options()
site_status_autoloaded_options_action_to_perform
wp-admin/includes/class-wp-site-health.php 2686
$result['actions'] = apply_filters( 'site_status_autoloaded_options_action_to_perform', $result['actions'] );

Where the hook is used in WordPress

Usage not found.