Skip to content

Instantly share code, notes, and snippets.

@AlecRust
AlecRust / functions.php
Last active August 22, 2023 10:53
Add latest WooCommerce order product name as Mailchimp tag
/**
* Add customer's last order product name as Mailchimp member tag on sync
*/
function product_mailchimp_tag($tags, $email)
{
$new_tags = [];
$query = new WC_Order_Query();
$query->set('customer', $email);
$customer_orders = $query->get_orders();