# Elementor Loaded
Elementor Core BasicElementor has a hook that fires when a plugin is loaded, before loading all the components.
# Hook Details
- Hook Type: Action Hook
- Hook Name:
elementor/loaded
- Affects: Init Process
# Example
function my_plugin() {
// ...
}
add_action( 'elementor/loaded', 'my_plugin' );
1
2
3
4
5
6
2
3
4
5
6