mirror of
				https://github.com/lubuntu-team/lubuntu.me.git
				synced 2025-10-31 00:24:04 +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');
 | |
| 
 | |
| 
 | |
| 
 |