do_action and add_action in Woocommerce and WordPress
It’s quite hard to give an easy to understand definition of what do_action and add_action do, so I’m just going to launch straight into some code and hopefully, the purpose of the two methods will become clear reasonably quickly. Here’s a very simple example of do_action
1 |
do_action("display_some_numbers"); |
If we add the code above to a … Read more