Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Plugin Name: Splits Snapshot backup
  4.  * Description: Splits backup into a smaller size.
  5.  * Version: 1.0.0
  6.  * Author:      Bamboo
  7.  * Author URI: https://premium.wpmudev.org/
  8.  * License:     GNU General Public License v3 or later
  9.  */
  10. function snapshot_custom_size_increment() {
  11.     return 5 * 1024 * 1024;
  12.  }
  13.  
  14.  add_filter( 'snapshot_model_transfer_part_size_increment', 'snapshot_custom_size_increment' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement