Created
September 12, 2023 15:31
-
-
Save raselupm/a806356e5286270687d3e56d1c7cc436 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function registering_ppm_addons_reloaded( $widgets_manager ) { | |
require_once( __DIR__ . '/addons.php' ); | |
$widgets_manager->register( new \PPM_Slider_Widget() ); | |
$widgets_manager->register( new \PPM_ImageBox_Widget() ); | |
$widgets_manager->register( new \PPM_Testimonials_Widget() ); | |
$widgets_manager->register( new \PPM_RelatedProducts_Widget() ); | |
$widgets_manager->register( new \PPM_TableAttributes_Widget() ); | |
} | |
add_action( 'elementor/widgets/register', 'registering_ppm_addons_reloaded' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment