-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
1,982 additions
and
2,122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,53 @@ | ||
<?php defined( 'ABSPATH' ) or die; | ||
|
||
/** | ||
* Customize Plus | ||
* Plugin Name: Customize Plus | ||
* Plugin URI: https://knitkode.com/products/customize-plus | ||
* Description: Enhance and extend the WordPress Customize in your themes. | ||
* Version: 1.1.1 | ||
* Author: KnitKode | ||
* Author URI: https://knitkode.com/ | ||
* License: GPLv3+ | ||
* License URI: http://www.gnu.org/licenses/gpl-3.0.html | ||
* Text Domain: kkcp | ||
* Domain Path: /languages | ||
* | ||
* Enhance and extend the WordPress Customize in your themes. | ||
* Copyright (C) 2014-2018 KnitKode (https://knitkode.com/) | ||
* | ||
* @package Customize_Plus | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* @wordpress-plugin | ||
* Plugin Name: Customize Plus | ||
* Plugin URI: https://knitkode.com/products/customize-plus | ||
* Description: Enhance and extend the WordPress Customize in your themes. | ||
* Version: 1.0.22 | ||
* Author: KnitKode | ||
* Author URI: https://knitkode.com | ||
* License: GPLv3 | ||
* License URI: http://www.gnu.org/licenses/gpl-3.0.html | ||
* Text Domain: kkcp | ||
* Domain Path: /languages | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* @package Customize_Plus | ||
*/ | ||
|
||
define( 'KKCP_PLUGIN_FILE', __FILE__ ); | ||
define( 'KKCP_PLUGIN_VERSION', '1.0.22' ); | ||
define( 'KKCP_PLUGIN_VERSION', '1.1.1' ); | ||
define( 'KKCP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); | ||
define( 'KKCP_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); | ||
|
||
require_once( KKCP_PLUGIN_DIR . 'includes/class-requirements.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-data.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-helper.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-singleton.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-core.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-sanitizejs.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-customize.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-theme.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-requirements.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-data.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-helper.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-singleton.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-core.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-sanitizejs.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-customize.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-theme.php' ); | ||
if ( is_admin() ) { | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-validate.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-sanitize.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-admin.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'includes/class-admin-about.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-validate.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-sanitize.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-admin.php' ); | ||
require_once( KKCP_PLUGIN_DIR . 'php/class-admin-about.php' ); | ||
} | ||
|
||
do_action( 'kkcp_after_requires' ); |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
assets/js/customize-preview.min.js → js/customize-preview.min.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.