Elementor Init
Elementor Core Basic Elementor has a hook that fires when a plugin is fully loaded.
Hook Details
- Hook Type: Action Hook
- Hook Name:
elementor/init
- Affects: Init Process
Example
function my_plugin() {
}
add_action( 'elementor/init', 'my_plugin' );
1
2
3
4
5
6