install_theme_overwrite_actions
Filters the list of action links available following a single theme installation failure when overwriting is allowed.
Usage
add_filter( 'install_theme_overwrite_actions', 'wp_kama_install_theme_overwrite_actions_filter', 10, 3 ); /** * Function for `install_theme_overwrite_actions` filter-hook. * * @param string[] $install_actions Array of theme action links. * @param object $api Object containing WordPress.org API theme data. * @param array $new_theme_data Array with uploaded theme data. * * @return string[] */ function wp_kama_install_theme_overwrite_actions_filter( $install_actions, $api, $new_theme_data ){ // filter... return $install_actions; }
- $install_actions(string[])
- Array of theme action links.
- $api(object)
- Object containing WordPress.org API theme data.
- $new_theme_data(array)
- Array with uploaded theme data.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
install_theme_overwrite_actions
wp-admin/includes/class-theme-installer-skin.php 378
$install_actions = apply_filters( 'install_theme_overwrite_actions', $install_actions, $this->api, $new_theme_data );