Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_filter('updraftplus_backup_table', 'my_updraftplus_backup_table', 11, 5);
  2.  
  3. function my_updraftplus_backup_table($go_ahead, $table, $table_prefix, $whichdb, $dbinfo) {
  4. $tables_to_not_back_up = array('wp_wfconfig');
  5. if (in_array($table, $tables_to_not_back_up)) return false;
  6. return $go_ahead;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement