-
Notifications
You must be signed in to change notification settings - Fork 5
/
customify.php
44 lines (38 loc) · 1.24 KB
/
customify.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
36
37
38
39
40
41
42
43
44
<?php
/**
* Plugin Name: Customify
* Plugin URI: https://wordpress.org/plugins/customify/
* Description: A Theme Customizer Booster to easily and consistently customize Fonts, Colors, and other options for your site.
* Version: 2.10.5
* Author: Pixelgrade
* Author URI: https://pixelgrade.com
* Author Email: [email protected]
* Text Domain: customify
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages/
* Requires at least: 4.9.14
* Tested up to: 5.9.5
* Requires PHP: 5.6.40
*/
// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
die;
}
require_once 'includes/lib/class-customify-array.php';
require_once 'includes/extras.php';
/**
* Returns the main instance of PixCustomifyPlugin to prevent the need to use globals.
*
* @since 1.5.0
* @return PixCustomifyPlugin
*/
function PixCustomifyPlugin() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-pixcustomify.php';
return PixCustomifyPlugin::instance( __FILE__, '2.10.4' );
}
// Now get the party started.
// We will keep this global variable for legacy reasons.
$pixcustomify_plugin = PixCustomifyPlugin();
// Load all third-party plugins integrations.
require_once 'includes/integrations.php';