Filters the list of action links available following a single theme update.
$update_actions, $this->theme
Sortie :
@param string[] $update_actions Array of theme action links. @param string $theme Theme directory name.
// Modifier la valeur avec le filtre 'update_theme_complete_actions'
add_filter('update_theme_complete_actions', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($update_actions) {
// Modifier la valeur
return $update_actions;
}
Chargement des actualités...