| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Customify |
| 4 |
* Plugin URI: https://wordpress.org/plugins/customify/ |
| 5 |
* Description: A Theme Customizer Booster to easily and consistently customize Fonts, Colors, and other options for your site. |
| 6 |
* Version: 2.7.2 |
| 7 |
* Author: Pixelgrade |
| 8 |
* Author URI: https://pixelgrade.com |
| 9 |
* Author Email: contact@pixelgrade.com |
| 10 |
* Text Domain: customify |
| 11 |
* License: GPL-2.0+ |
| 12 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 13 |
* Domain Path: /languages/ |
| 14 |
* Requires at least: 4.9.9 |
| 15 |
* Tested up to: 5.4.1 |
| 16 |
* Requires PHP: 5.4.0 |
| 17 |
*/ |
| 18 |
|
| 19 |
// If this file is called directly, abort. |
| 20 |
if ( ! defined( 'ABSPATH' ) ) { |
| 21 |
die; |
| 22 |
} |
| 23 |
|
| 24 |
require_once 'includes/lib/class-customify-array.php'; |
| 25 |
require_once 'includes/extras.php'; |
| 26 |
|
| 27 |
/** |
| 28 |
* Returns the main instance of PixCustomifyPlugin to prevent the need to use globals. |
| 29 |
* |
| 30 |
* @since 1.5.0 |
| 31 |
* @return PixCustomifyPlugin |
| 32 |
*/ |
| 33 |
function PixCustomifyPlugin() { |
| 34 |
require_once plugin_dir_path( __FILE__ ) . 'includes/class-pixcustomify.php'; |
| 35 |
|
| 36 |
return PixCustomifyPlugin::instance( __FILE__, '2.7.2' ); |
| 37 |
} |
| 38 |
|
| 39 |
// Now get the party started. |
| 40 |
// We will keep this global variable for legacy reasons. |
| 41 |
$pixcustomify_plugin = PixCustomifyPlugin(); |
| 42 |
|
| 43 |
// Load all third-party plugins integrations. |
| 44 |
require_once 'includes/integrations.php'; |
| 45 |
|