activated_plugin WordPress Action Hook
The activated_plugin hook is fired when a plugin is activated. It is important to note that this hook is only fired when a plugin is activated through the Wordpress administration panel. If a plugin is activated programmatically, this hook will not be fired.
do_action( 'activated_plugin', string $plugin , bool $network_wide ) #
Fires after a plugin has been activated.
Description
If a plugin is silently activated (such as during an update), this hook does not fire.
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 false.
Source
Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |