Filters the list of action links available following bulk theme updates.
$update_actions, $this->theme_info
Sortie :
@param string[] $update_actions Array of theme action links. @param WP_Theme $theme_info Theme object for the last-updated theme.
// Modifier la valeur avec le filtre 'update_bulk_theme_complete_actions'
add_filter('update_bulk_theme_complete_actions', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($update_actions) {
// Modifier la valeur
return $update_actions;
}
Chargement des actualités...