mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-07-24 21:31:29 +00:00
18 lines
346 B
PHP
18 lines
346 B
PHP
<?php
|
|
namespace Elementor;
|
|
|
|
function eael_elementor_init(){
|
|
Plugin::instance()->elements_manager->add_category(
|
|
'essential-addons-elementor',
|
|
[
|
|
'title' => 'Essential Addons for Elementor',
|
|
'icon' => 'font'
|
|
],
|
|
1
|
|
);
|
|
}
|
|
add_action('elementor/init','Elementor\eael_elementor_init');
|
|
|
|
|
|
|