Allow to modify the email object before rendering the preview to add additional data.
$this->email
Sortie :
@param WC_Email $email The email object.
// Modifier la valeur avec le filtre 'woocommerce_prepare_email_for_preview'
add_filter('woocommerce_prepare_email_for_preview', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($this->email) {
// Modifier la valeur
return $this->email;
}
Chargement des actualités...