diff --git a/includes/class-health-check.php b/includes/class-health-check.php index a85b28a..a802e6f 100644 --- a/includes/class-health-check.php +++ b/includes/class-health-check.php @@ -111,7 +111,14 @@ class Health_Check { $result['badge']['color'] = 'orange'; $result['description'] = \sprintf( '

%s

', - \__( 'It is highly recommended to use your Systems Task Scheduler instead of the default WP_Cron setup. For further informations, check the "Hooking WP-Cron Into the System Task Scheduler" guide from the Plugin Handbook.', 'activitypub' ) + \__( 'Enhance your WordPress site’s performance and mitigate potential heavy loads caused by plugins like ActivityPub by setting up a system cron job to run WP Cron. This ensures scheduled tasks are executed consistently and reduces the reliance on website traffic for trigger events.', 'activitypub' ) + ); + $result['actions'] .= sprintf( + '

%s %s

', + __( 'https://developer.wordpress.org/plugins/cron/hooking-wp-cron-into-the-system-task-scheduler/', 'activitypub' ), + __( 'Learn how to hook the WP-Cron into the System Task Scheduler.', 'activitypub' ), + /* translators: Hidden accessibility text. */ + __( '(opens in a new tab)', 'activitypub' ) ); return $result;