Controller::register_actions()
Register actions.
Source
File: src/Events/Integrations/Plugins/Elementor/Controller.php
public function register_actions(): void {
add_action( 'edit_form_after_title', [ $this, 'modify_switch_mode_button' ], 15, 1 );
add_action( 'elementor/elements/categories_registered', [ $this, 'action_register_elementor_category' ] );
add_action( 'elementor/controls/controls_registered', [ $this, 'action_register_elementor_controls' ] );
add_action( 'template_redirect', [ $this, 'action_remove_revision_metadata_modifier' ], 1 );
}
Changelog
| Version | Description |
|---|---|
| 6.4.0 | Introduced. |