| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Custom Elementor Icons |
| 4 |
* Plugin URI: https://wordpress.org/plugins/custom-elementor-icons/ |
| 5 |
* Description: Custom Elementor Icons is a free WordPress plugin allowing its users to upload unlimited custom icons to their websites. |
| 6 |
* Author: StylemixThemes |
| 7 |
* Author URI: https://stylemixthemes.com/ |
| 8 |
* License: GNU General Public License v2 or later |
| 9 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 10 |
* Text Domain: custom-elementor-icons |
| 11 |
* Version: 1.0.5 |
| 12 |
*/ |
| 13 |
|
| 14 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 15 |
|
| 16 |
define( 'CEI_VERSION', '1.0.5' ); |
| 17 |
define( 'CEI_FILE', __FILE__ ); |
| 18 |
define( 'CEI_PATH', dirname( CEI_FILE ) ); |
| 19 |
define( 'CEI_INCLUDES_PATH', CEI_PATH . '/includes/' ); |
| 20 |
define( 'CEI_CLASSES_PATH', CEI_INCLUDES_PATH . 'classes/' ); |
| 21 |
define( 'CEI_URL', plugin_dir_url( CEI_FILE ) ); |
| 22 |
|
| 23 |
require_once( CEI_INCLUDES_PATH . '/autoload.php' ); |
| 24 |
|
| 25 |
if ( is_admin() ) { |
| 26 |
require_once CEI_INCLUDES_PATH . '/item-announcements.php'; |
| 27 |
} |
| 28 |
|