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_beta
  • install_plugins_favorites
  • install_plugins_featured
  • install_plugins_plugin-information
  • install_plugins_popular
  • install_plugins_recommended
  • install_plugins_search
  • install_plugins_upload

Top ↑

Parameters

$paged

(int)The current page number of the plugins list table.


Top ↑

Source

File: wp-admin/plugin-install.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
2.7.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.