Fires after the plugins list table in each tab of the Install Plugins screen. 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`
$paged
Sortie :
@param int $paged The current page number of the plugins list table.
// Ajouter une fonction au hook action 'install_plugins_{$tab}'
add_action('install_plugins_{$tab}', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($paged) {
// Votre code ici
error_log('Hook install_plugins_{$tab} déclenché');
}
Chargement des actualités...