WP UpdraftPlus – disable plugin on local
# wp-config.php
define( 'WP_ENVIRONMENT_TYPE', 'staging' );
# in a mu-plugin
add_filter(
'updraftplus_boot_backup',
function( $go_ahead ) {
return ( 'local' === wp_get_environment_type() );
}
);