install_plugins_{$tab} WordPress Action Hook
The install_plugins_{$tab} hook is executed during the plugin installation process when the user is on the {$tab} tab. This hook allows you to perform any necessary actions when a plugin is installed.
do_action( "install_plugins_{$tab}", int $paged ) #
Fires after the plugins list table in each tab of the Install Plugins screen.
Description
The dynamic portion of the hook name, $tab, allows for targeting individual tabs.
Possible hook names include:
install_plugins_betainstall_plugins_favoritesinstall_plugins_featuredinstall_plugins_plugin-informationinstall_plugins_popularinstall_plugins_recommendedinstall_plugins_searchinstall_plugins_upload
Parameters
- $paged
(int)The current page number of the plugins list table.
Source
Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |