elementskit-lite
Last commit date
core
6 years ago
helpers
6 years ago
libs
6 years ago
modules
6 years ago
widgets
6 years ago
autoloader.php
6 years ago
core.php
6 years ago
elementskit-lite.php
6 years ago
handler.php
6 years ago
license.txt
6 years ago
readme.txt
6 years ago
elementskit-lite.php
31 lines
| 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.2.9 |
| 10 | * Author URI: https://products.wpmet.com/elementskit |
| 11 | * |
| 12 | * Text Domain: elementskit |
| 13 | * @package ElementsKit |
| 14 | * @category Free |
| 15 | * |
| 16 | * Elementskit is a powerful addon for Elementor page builder. |
| 17 | * It includes most comprehensive modules, such as "header footer builder", "mega menu", |
| 18 | * "layout installer", "quick form builder" etc under the hood. |
| 19 | * It has a tons of widgets to create any sites with an ease. It has some most unique |
| 20 | * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area". |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | register_activation_hook(__FILE__, function(){ |
| 25 | include_once plugin_dir_path( __FILE__ ) . 'autoloader.php'; |
| 26 | include_once plugin_dir_path( __FILE__ ) . 'core/hook-activation.php'; |
| 27 | }); |
| 28 | |
| 29 | add_action('plugins_loaded', function(){ |
| 30 | include_once plugin_dir_path( __FILE__ ) . 'core.php'; |
| 31 | }, 112); |