# Elementor Loaded

Elementor Core Basic

Elementor 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