make_db_current() WordPress Function
The make_db_current() function is a tool for updating your WordPress database. It compares the current database version with the latest version available, and updates the database if necessary.
make_db_current( string $tables = 'all' ) #
Updates the database tables to a new schema.
Description
By default, updates all the tables to use the latest defined schema, but can also be used to update a specific set of tables in wp_get_db_schema().
Parameters
- $tables
(string)(Optional) Which set of tables to update. Default is 'all'.
Default value: 'all'
Source
File: wp-admin/includes/upgrade.php
function make_db_current( $tables = 'all' ) { $alterations = dbDelta( $tables ); echo "<ol>\n"; foreach ( $alterations as $alteration ) { echo "<li>$alteration</li>\n"; } echo "</ol>\n"; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |