Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created September 30, 2022 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukecav/734d926dace0305eae42d7f5b9488bf6 to your computer and use it in GitHub Desktop.
Save lukecav/734d926dace0305eae42d7f5b9488bf6 to your computer and use it in GitHub Desktop.
Exclude WooCommerce Sessions and Action Scheduler Log in search and replace in WP Staging plugin
function wpstg_searchreplace_excl_tables($default){
$tables = array('_woocommerce_sessions', '_actionscheduler_logs');
return array_merge($default, $tables);
}
add_filter('wpstg_searchreplace_excl_tables','wpstg_searchreplace_excl_tables');
@lukecav
Copy link
Author

lukecav commented Sep 30, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment