update_plugins_{$hostname}

过滤钩子
apply_filters( "update_plugins_{$hostname}", false, $plugin_data, $plugin_file, $locales )
参数
  • (array|false) $update { 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 `Update URI` 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 array $icons Optional. Array of plugin icons. @type array $banners Optional. Array of plugin banners. @type array $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 `YYYY-MM-DD HH:MM:SS` format. @type string $package The ZIP location containing the translation update. @type string $autoupdate Whether the translation should be automatically installed. } }
    Required:
  • (array) $plugin_data Plugin headers.
    Required:
  • (string) $plugin_file Plugin filename.
    Required:
  • (string[]) $locales Installed locales to look up translations for.
    Required:
定义位置
相关勾子
update_themes_hostnameupdate_postmetaupdated_postmetaupdate_plugin_complete_actionsafter_plugin_row
相关方法
wp_update_pluginswp_update_pluginupdate_post_metaupdate_post_cache_maybe_update_pluginsdisplay_plugins_table
引入
5.8.0
弃用
-

update_plugins_{$hostname} 是 WordPress 中的一个动作钩子,在从特定主机更新插件后触发。 此钩子用于在插件更新完成后执行其他处理或日志记录。

过滤给定插件主机名的更新响应。

钩子名称的动态部分,$hostname,是指 Update URI 头域中指定的URI的主机名。

$update = apply_filters( "update_plugins_{$hostname}", false, $plugin_data, $plugin_file, $locales );

常见问题

FAQs
查看更多 >