| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
/** |
| 5 |
* Plugin Name: ElementsKit Lite |
| 6 |
* Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls. |
| 7 |
* Plugin URI: https://wpmet.com/ |
| 8 |
* Author: Wpmet |
| 9 |
* Version: 1.4.4 |
| 10 |
* Author URI: https://products.wpmet.com/elementskit |
| 11 |
* |
| 12 |
* Text Domain: elementskit |
| 13 |
* |
| 14 |
* @package ElementsKit |
| 15 |
* @category Free |
| 16 |
* |
| 17 |
* Elementskit is a powerful addon for Elementor page builder. |
| 18 |
* It includes most comprehensive modules, such as "header footer builder", "mega menu", |
| 19 |
* "layout installer", "quick form builder" etc under the hood. |
| 20 |
* It has a tons of widgets to create any sites with an ease. It has some most unique |
| 21 |
* and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area". |
| 22 |
* |
| 23 |
*/ |
| 24 |
|
| 25 |
register_activation_hook(__FILE__, function(){ |
| 26 |
include_once plugin_dir_path( __FILE__ ) . 'autoloader.php'; |
| 27 |
include_once plugin_dir_path( __FILE__ ) . 'core/hook-activation.php'; |
| 28 |
}); |
| 29 |
|
| 30 |
add_action('plugins_loaded', function(){ |
| 31 |
include_once plugin_dir_path( __FILE__ ) . 'core.php'; |
| 32 |
}, 112); |