wpmdb_skip_search_replace_tables

wpmdb_skip_search_replace_tables

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-migrate-db.2.6.9

apply_filters('wpmdb_skip_search_replace_tables') is found 1 times:

  • /class/Common/Replace.php line 629
                $table_prefix = $this->properties->temp_prefix . $table_prefix;
            }
    
            //Check if find and replace needs be skipped for the current table
            $skipped_tables = apply_filters('wpmdb_skip_search_replace_tables', ['eum_logs']);
            foreach ($skipped_tables as $skipped_table) {
                if ($this->table === $table_prefix . $skipped_table) {
                    return $data;
                }
            }