Code-Snippets-Functions/Execute a function on a child site/WordPress/remove-background-updates-from-site-status-tests.txt

4 lines
131 B
Text

add_filter( 'site_status_tests', function ( $tests ) {
unset( $tests['async']['background_updates'] );
return $tests;
} );