mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
186 B
Text
5 lines
186 B
Text
function myhost_remove_update_check( $tests ) {
|
|
unset( $tests['async']['background_updates'] );
|
|
return $tests;
|
|
}
|
|
add_filter( 'site_status_tests', 'myhost_remove_update_check' );
|