filtrdynamicznyod 5.8.0
update_plugins_{$hostname}
Args 4Plik wp-includes/update.php
Opis — z kodu źródłowego
Filters the update response for a given plugin hostname.
The dynamic portion of the hook name, $hostname, refers to the hostname of the URI specified in the Update URI header field.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$update | array | false | { The plugin update data with the latest details. Default false. @type string $id Optional. ID of the plugin for update purposes, should be a URI specified in the <code>Update URI</code> header field. @type string $slug Slug of the plugin. @type string $version The version of the plugin. @type string $url The URL for details of the plugin. @type string $package Optional. The update ZIP for the plugin. @type string $tested Optional. The version of WordPress the plugin is tested against. @type string $requires_php Optional. The version of PHP which the plugin requires. @type bool $autoupdate Optional. Whether the plugin should automatically update. @type string[] $icons Optional. Array of plugin icons. @type string[] $banners Optional. Array of plugin banners. @type string[] $banners_rtl Optional. Array of plugin RTL banners. @type array $translations { Optional. List of translation updates for the plugin. @type string $language The language the translation update is for. @type string $version The version of the plugin this translation is for. This is not the version of the language file. @type string $updated The update timestamp of the translation file. Should be a date in the <code>YYYY-MM-DD HH:MM:SS</code> format. @type string $package The ZIP location containing the translation update. @type string $autoupdate Whether the translation should be automatically installed. } } |
$plugin_data | array | Plugin headers. |
$plugin_file | string | Plugin filename. |
$locales | string[] | Installed locales to look up translations for. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'update_plugins_{$hostname}', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'update_plugins_{$hostname}', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}Popularne w tej kategorii