mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.stackexchange.com/questions/344381/wordpress-health-tool-reporting-version-control-as-a-critical-issue
4 lines
131 B
Text
4 lines
131 B
Text
add_filter( 'site_status_tests', function ( $tests ) {
|
|
unset( $tests['async']['background_updates'] );
|
|
return $tests;
|
|
} );
|