update_bulk_theme_complete_actions

FILTER wp-admin\includes\class-bulk-theme-upgrader-skin.php (ligne 99) github
Filters the list of action links available following bulk theme updates.

Paramètres

Entrée :
$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.

Utilisation

// 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;
}

Actualités

Chargement des actualités...