Incorporate spike5; working 🥳

This commit is contained in:
3wc
2021-12-06 14:41:41 +02:00
parent 325eb3f817
commit 98c4098bf2
24 changed files with 190 additions and 131 deletions

View File

6
src/web/index.php Normal file
View File

@ -0,0 +1,6 @@
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';

9
src/web/wp-config.php Normal file
View File

@ -0,0 +1,9 @@
<?php
/**
* Do not edit this file. Edit the config files found in the 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.
*/
require_once dirname(__DIR__) . '/vendor/autoload.php';
require_once dirname(__DIR__) . '/config/application.php';
require_once ABSPATH . 'wp-settings.php';