-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwpframe.php
More file actions
35 lines (30 loc) · 904 Bytes
/
wpframe.php
File metadata and controls
35 lines (30 loc) · 904 Bytes
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
/**
* This file is read by WordPress to generate the plugin information in the
* plugin admin area.
*
* @link https://initflex.com/projects/wpframe/
* @package WPFrame
*
* @wordpress-plugin
* Plugin Name: WPFrame
* Plugin URI: https://initflex.com/projects/wpframe/
* Description: Thank you for using WPFrame. Get started for your creative application :)
* Version: 2.1.5
* Author: Initflex
* Author URI: https://github.com/initflex/wpframe/
* License: MIT
* License URI: https://opensource.org/licenses/MIT
*/
use WPFP\Boot\System\Bootstrap;
// If this file is called directly, abort.
if (!defined('WPINC')) {
die;
}
/**
* Load File System by Bootstrap File
*/
include_once __DIR__ . '/Boot/System/Bootstrap.php';
// load boot system
$bootstrap = new Bootstrap();
$bootstrap->load();