activate_{$plugin} WordPress Action Hook

This hook is called when a plugin is activated. It is useful for doing any initialization tasks that your plugin needs to perform.

do_action( "activate_{$plugin}", bool $network_wide ) #

Fires as a specific plugin is being activated.


Description

This hook is the "activation" hook used internally by register_activation_hook(). The dynamic portion of the hook name, $plugin, refers to the plugin basename.

If a plugin is silently activated (such as during an update), this hook does not fire.


Top ↑

Parameters

$network_wide

(bool)Whether to enable the plugin for all sites in the network or just the current site. Multisite only. Default false.


Top ↑

More Information

This hook provides no parameters. You use this hook by having your function echo output to the browser, or by having it perform background tasks. Your functions shouldn’t return, and shouldn’t take any parameters.

It is recommended to use the function register_activation_hook() instead of this function.


Top ↑

Source

File: wp-admin/includes/plugin.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.