WordPress How do I pass a variable from one add_action to another?
You shouldn’t be trying to pass the variable between actions. Variables do not persist across requests, and the first time you define it is when the checkout loaded, and the second time is after the checkout is submitted, which is a separate request entirely. To pass a value between requests you would need to store … Read more