-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-config.php
26 lines (21 loc) · 1.17 KB
/
wp-config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/** ---------------------------------------------------------------------------
* WP Config
* ---------------------------------------------------------------------------
*
* Do not edit this file. Edit the config files found in the wp-config/ dir instead.
* This file is required in the root directory so WordPress can find it.
* WP is hardcoded to look in its own directory or one directory up for wp-config.php.
* --------------------------------------------------------------------------- */
/** ---------------------------------------------------------------------------
* Autoloader
* --------------------------------------------------------------------------- */
require_once __DIR__ . '/vendor/autoload.php';
/** ---------------------------------------------------------------------------
* Configuration
* --------------------------------------------------------------------------- */
require_once __DIR__ . '/wp-config/application.php';
/** ---------------------------------------------------------------------------
* WordPress Settings
* --------------------------------------------------------------------------- */
require_once ABSPATH . 'wp-settings.php';