PluginProbe
Custom Icons for Elementor and WPBakery / master
Custom Icons for Elementor and WPBakery vmaster
trunk 1.0.0 1.0.1 1.0.2 1.0.5 1.0.6 master
custom-elementor-icons / custom-elementor-icons.php

custom-elementor-icons.php in Custom Icons for Elementor and WPBakery master, at custom-elementor-icons.php

28 lines 945 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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