| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Customify |
| 4 |
Plugin URI: https://wordpress.org/plugins/customify/ |
| 5 |
Description: A Theme Customizer Booster to easily customize Fonts, Colors, and other options for your site. |
| 6 |
Version: 2.3.5.1 |
| 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.2.0 |
| 16 |
*/ |
| 17 |
|
| 18 |
// If this file is called directly, abort. |
| 19 |
if ( ! defined( 'ABSPATH' ) ) { |
| 20 |
die; |
| 21 |
} |
| 22 |
|
| 23 |
require_once 'includes/lib/class-customify-array.php'; |
| 24 |
require_once 'includes/extras.php'; |
| 25 |
|
| 26 |
/** |
| 27 |
* Returns the main instance of PixCustomifyPlugin to prevent the need to use globals. |
| 28 |
* |
| 29 |
* @since 1.5.0 |
| 30 |
* @return PixCustomifyPlugin |
| 31 |
*/ |
| 32 |
function PixCustomifyPlugin() { |
| 33 |
require_once plugin_dir_path( __FILE__ ) . 'includes/class-pixcustomify.php'; |
| 34 |
|
| 35 |
return PixCustomifyPlugin::instance( __FILE__, '2.3.5.1' ); |
| 36 |
} |
| 37 |
|
| 38 |
// Now get the party started |
| 39 |
// We will keep this global variable for legacy |
| 40 |
$pixcustomify_plugin = PixCustomifyPlugin(); |
| 41 |
|