apply_filters( 'update_bulk_theme_complete_actions', string[] $update_actions, WP_Theme $theme_info )
- Since
- 3.0.0
Filters the list of action links available following bulk theme updates.
Compatibility
- WordPress
- since 3.0.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$update_actionsstring[]- Array of theme action links.
$theme_infoWP_Theme- Theme object for the last-updated theme.
Where this hook fires · 1
wp-admin/includes/class-bulk-theme-upgrader-skin.php:99Bulk_Theme_Upgrader_Skin::bulk_footer()
Source code
* * @since 3.0.0 * * @param string[] $update_actions Array of theme action links. * @param WP_Theme $theme_info Theme object for the last-updated theme. */ $update_actions = apply_filters( 'update_bulk_theme_complete_actions', $update_actions, $this->theme_info ); if ( ! empty( $update_actions ) ) { $this->feedback( implode( ' | ', (array) $update_actions ) ); } }}Changelog
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.