generated from wpbones/WPKirk-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-kirk.php
35 lines (31 loc) · 1004 Bytes
/
wp-kirk.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
27
28
29
30
31
32
33
34
35
<?php
/**
* Plugin Name: WP Kirk Database Boilerplate
* Plugin URI: https://github.com/wpbones/WPKirk-Boilerplate
* Description: WP Bones Boilerplate WordPress plugin
* Version: 1.8.0
* Requires at least: 6.2
* Requires PHP: 8.2
* Author: Giovambattista Fazioli
* Author URI: https://wpbones.com/
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wp-kirk
* Domain Path: languages
*
*/
if (!defined('ABSPATH')) {
exit();
}
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels nice to relax.
|
*/
require_once __DIR__ . '/bootstrap/autoload.php';