do_action( 'activated_plugin', string $plugin , bool $network_wide )
Fires after a plugin has been activated.
Description Description
If a plugin is silently activated (such as during an update), this hook does not fire.
Parameters Parameters
- $plugin
-
(string) Path to the plugin file relative to the plugins directory.
- $network_wide
-
(bool) Whether to enable the plugin for all sites in the network or just the current site. Multisite only. Default is false.
Source Source
Changelog Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
If you would like to run some code after your plugin is activated; then user the register_activation_hook() function instead.