Skip to content

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

php
function my_plugin() {

	// ...

}
add_action( 'elementor/loaded', 'my_plugin' );