mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
242 B
Text
5 lines
242 B
Text
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');
|