22 lines
616 B
PHP
22 lines
616 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Custom Gallery
|
|
* Description: Simple hello world widgets for Elementor.
|
|
* Version: 1.0.0
|
|
* Author: Elementor Developer
|
|
* Author URI: https://developers.elementor.com/
|
|
* Text Domain: elementor-addon
|
|
*
|
|
* Requires Plugins: elementor
|
|
* Elementor tested up to: 3.21.0
|
|
* Elementor Pro tested up to: 3.21.0
|
|
*/
|
|
|
|
function register_custom_gallery_widget( $widgets_manager ) {
|
|
|
|
require_once( __DIR__ . '/widgets/custom-gallery.php' );
|
|
|
|
$widgets_manager->register( new \Elementor_Custom_Gallery() );
|
|
|
|
}
|
|
add_action( 'elementor/widgets/register', 'register_custom_gallery_widget' ); |