make_db_current_silent

函数
make_db_current_silent ( $tables = 'all' )
参数
  • (string) $tables Optional. Which set of tables to update. Default is 'all'.
    Required:
    Default: 'all'
相关
  • make_db_current()
定义位置
相关方法
make_db_currentget_current_sitewpmu_current_siteget_current_screenset_current_screen
引入
1.5.0
弃用
-

make_db_current_silent: 这是WordPress中的一个函数,它可以更新WordPress的数据库模式以匹配当前版本的WordPress,而不向用户显示任何信息或提示。你可以使用这个函数在后台默默地更新数据库模式。

将数据库表更新到一个新的模式,但不显示结果。

默认情况下,更新所有的表以使用最新定义的模式,但也可以用来更新wp_get_db_schema()中的特定表集。

function make_db_current_silent( $tables = 'all' ) {
	dbDelta( $tables );
}

常见问题

FAQs
查看更多 >