Disable site health checks
-
Since WordPress 5.2, there is a Site Health screen showing the result of a bunch of checks. Disabling the automatic updates creates a critical issue there. This can be disabled via a filter such as
add_filter( 'site_status_tests', function( $tests ) { unset( $tests['async']['background_updates'] ); return $tests; });
It could be a good addition to the plugin, since there is no point to show this issue when you enable the plugin, given that you have explicitly chosen to disable automatic updates.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Disable site health checks’ is closed to new replies.