PluginProbe
Custom Icons for Elementor and WPBakery / trunk
Custom Icons for Elementor and WPBakery vtrunk
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 trunk, at custom-elementor-icons.php

24 lines 910 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 Icons for Elementor and WPBakery
4 * Plugin URI: https://wordpress.org/plugins/custom-elementor-icons/
5 * Description: Custom Icons for Elementor and WPBakery is a free WordPress plugin that enables users to upload an unlimited number of custom icons to their websites.
6 * Author: gdprcompliancewp
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.6
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) exit;
15
16 define( 'CEI_VERSION', '1.0.6' );
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