Skip to content

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

php
function my_plugin() {

	// ...

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