update_bulk_theme_complete_actions
云策文档标注
概述
update_bulk_theme_complete_actions 是一个 WordPress 过滤器钩子,用于在批量主题更新后修改可用的操作链接列表。它允许开发者自定义或扩展这些链接,以增强用户体验或添加额外功能。
关键要点
- 这是一个过滤器钩子,用于过滤批量主题更新后的操作链接数组。
- 接受两个参数:$update_actions(操作链接数组)和 $theme_info(最后一个更新主题的 WP_Theme 对象)。
- 在 WordPress 3.0.0 版本中引入,由 Bulk_Theme_Upgrader_Skin::bulk_footer() 方法使用。
原文内容
Filters the list of action links available following bulk theme updates.
Parameters
$update_actionsstring[]-
Array of theme action links.
$theme_infoWP_Theme-
Theme object for the last-updated theme.
Source
$update_actions = apply_filters( 'update_bulk_theme_complete_actions', $update_actions, $this->theme_info );
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |