I want to hook into status changes for custom notifications. Should I poll `wpdd_status`?

2026-07-29T15:12:47+01:00|

Use the action hooks instead: wpdd_mandate_ready, wpdd_mandate_active, wpdd_payment_confirmed, wpdd_payment_paid_out, wpdd_subscription_created, wpdd_payment_failed, wpdd_subscription_create_failed, and wpdd_mandate_cancelled. All fire with ( $entry_id, $resource_id ). The reason to prefer these over reading wpdd_status meta directly is that the status field is deliberately monotonic [...]