UpdraftPlus
Back up, restore and migrate your WordPress website with UpdraftPlus
You might have a development site (i.e. a copy of your live site), that you restore backups from the live site onto – and you don’t want the development site itself to ever make any backups. You can achieve this by adding this snippet as a must-use plugin – which means, create a directory wp-content/mu-plugins, and add this as a file ending in .php (e.g. no-backups.php):
<?php add_filter('updraftplus_boot_backup', '__return_false');
If your live site has any must-use plugins, then this will get over-written when you restore; to avoid that, you could deploy a more sophisticated version on both sites (and change ‘localhost’ for part of the address that you visit your development site under);
<?php
add_filter('updraftplus_boot_backup', 'my_updraftplus_boot_backup');
function my_updraftplus_boot_backup($go_ahead) {
return (false !== strpos(site_url(), 'localhost')) ? false : $go_ahead;
}
Try TeamUpdraft’s full suite of WordPress plugins.
Back up, restore and migrate your WordPress website with UpdraftPlus
Speed up and optimize your WordPress website. Cache your site, clean the database and compress images
Secure your WordPress website. Comprehensive, feature rich and easy to use
Centrally manage all your WordPress websites’ plugins, updates, backups, users, pages and posts from one location