Filter the description for the order attribution field.
$description, $field_name
Sortie :
@param string $description The description for the order attribution field. @param string $field_name The field name.
// Modifier la valeur avec le filtre 'wc_order_attribution_field_description'
add_filter('wc_order_attribution_field_description', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($description) {
// Modifier la valeur
return $description;
}
Chargement des actualités...