WordPress如何在安装期间创建其数据库?

时间:2017-07-06 作者:Atoms

我是WordPress的新手,我正在努力理解它。我找了一个。WordPress脚本中的sql文件,但找不到任何。Wm有点困惑,想知道WordPress安装期间创建数据库的数据库条目和命令在WordPress脚本中的位置。

1 个回复
SO网友:Mandu

没有。sql文件。设置位于。php文件。

它通常位于wp config的顶部。php位于WordPress安装的根目录中,如下所示:

 /**
 * The base configurations of the WordPress.
 *
 * This file has the following configurations: MySQL settings, Table Prefix,
 * Secret Keys, and ABSPATH. You can find more information by visiting
 * {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
 * Codex page. You can get the MySQL settings from your web host.
 *
 * This file is used by the wp-config.php creation script during the
 * installation. You don\'t have to use the web site, you can just copy this file
 * to "wp-config.php" and fill in the values.
 *
 * @package WordPress
 */

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define(\'DB_NAME\', \'dbname\');

/** MySQL database username */
define(\'DB_USER\', \'username\');

/** MySQL database password */
define(\'DB_PASSWORD\', \'123password\');

/** MySQL hostname */
define(\'DB_HOST\', \'localhost\');

结束

相关推荐

是否存在比LOGIN_HEAD或LOGIN_ENQUEUE_SCRIPTS更早的挂钩?

我所拥有的:一个基本插件,将样式表和JavaScript文件排队,以修改登录表单。标志、色彩设计和其他风格受到影响。我的问题:因为/wp-login.php 页面加载时,在我的插件启动之前,默认布局会显示1到2秒,然后才应用插件的修改。CSS和JavaScript都落后,因此它是整个插件。我的问题:我如何将我的样式/脚本排队,以便插件不需要1-2秒就可以应用(或者我如何简单地强制我的插件立即应用)?