-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (20 loc) · 835 Bytes
/
index.php
File metadata and controls
22 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/*
Plugin Name: CDT UI Plugin Boiler Plate
Plugin URI: https://www.createdesign.tech/wordpress-plugins/wordpress-ui-plugin-boilerplate
Description: UI Plugin Boiler Plate
Version: 20160911
Author: createdesign.tech
Author URI: https://www.createdesign.tech/
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cdt_ui
Domain Path: /languages
*/
if ( !class_exists( 'ReduxFramework' ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/ReduxCore/framework.php' ) ) {
require_once( dirname( __FILE__ ) . '/ReduxFramework/ReduxCore/framework.php' );
}
if ( !isset( $redux_demo ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/config.php' ) ) {
require_once( dirname( __FILE__ ) . '/ReduxFramework/config.php' );
}
require_once('src/example-shortcode.php');