22 lines
719 B
PHP
22 lines
719 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Elementor Addon
|
|
* Description: Simple hello world widgets for Elementor.
|
|
* Version: 1.0.0
|
|
* Author: Roman Pyrih
|
|
* Author URI:
|
|
* Text Domain:
|
|
*
|
|
* Requires Plugins: elementor
|
|
* Elementor tested up to: 3.21.0
|
|
* Elementor Pro tested up to: 3.21.0
|
|
*/
|
|
|
|
function register_elementor_addon_widgets( $widgets_manager ) {
|
|
require_once( __DIR__ . '/widgets/apartment-search-form.php' );
|
|
require_once( __DIR__ . '/widgets/apartment-search-results.php' );
|
|
|
|
$widgets_manager->register( new \Elementor_Apartment_Search_Form() );
|
|
$widgets_manager->register( new \Elementor_Apartment_Search_Results() );
|
|
}
|
|
add_action( 'elementor/widgets/register', 'register_elementor_addon_widgets' ); |