woocommerce_allow_restoring_email_locale

FILTER woocommerce\includes\emails\class-wc-email.php (ligne 425) github
Filter the ability to restore email locale.

Paramètres

Entrée :
true, $this
Sortie :
@param bool $default_value The default returned value.
@param WC_Email $this The WC_Email object.

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_allow_restoring_email_locale'
add_filter('woocommerce_allow_restoring_email_locale', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(true) {
    // Modifier la valeur
    return true;
}

Actualités

Chargement des actualités...