-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlsx-projects.php
More file actions
30 lines (26 loc) · 944 Bytes
/
lsx-projects.php
File metadata and controls
30 lines (26 loc) · 944 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
<?php
/*
* Plugin Name: LSX Projects
* Plugin URI: https://www.lsdev.biz/product/lsx-projects/
* Description: The LSX Projects extension adds the "Projects" post type.
* Version: 2.0.0
* Author: LightSpeed
* Author URI: https://www.lsdev.biz/
* License: GPL3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: lsx-projects
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'LSX_PROJECTS_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_PROJECTS_CORE', __FILE__ );
define( 'LSX_PROJECTS_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_PROJECTS_VER', '2.0.0' );
/* ======================= Below is the Plugin Class init ========================= */
// Project Core.
require_once LSX_PROJECTS_PATH . '/classes/class-core.php';
// Post reorder.
require_once LSX_PROJECTS_PATH . '/includes/class-lsx-projects-scpo-engine.php';