Exclude specific database tables in the search-replace operation in WP Staging

Exclude specific database tables in the search-replace operation in WP Staging on child sites.

Snippet Type

Execute on Child Sites

Snippet

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');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.