update_theme_complete_actions filter-hook . WP 2.8.0
Filters the list of action links available following a single theme update.
Usage
add_filter( 'update_theme_complete_actions', 'filter_function_name_6518', 10, 2 ); function filter_function_name_6518( $update_actions, $theme ){ // filter... return $update_actions; }
- $update_actions(string[])
- Array of theme action links.
- $theme(string)
- Theme directory name.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
update_theme_complete_actions
wp-admin/includes/class-theme-upgrader-skin.php 138
$update_actions = apply_filters( 'update_theme_complete_actions', $update_actions, $this->theme );