Do I need to call do_action function every time I add_action something?
|
|
|||
|
Usually, you use existing action in your plugins. WordPress will call If your plugin is rather complex, like a shopping plugin, you may want to offer additional actions for other plugin developers or for the pro-version of your plugin. In these cases you add An example: I have a library of PHP classes that I use for some projects. When I write a plugin that relies on my library I have to wait until the library is ready. So I write in my library:
In my other plugin I hook into this action to start all the work:
Now I know all needed classes available, I don’t have to test
|
|||
|
|
WooCommerceplug-in, they've calleddo_actiona lot of time. I'm new to Wordpress and thinking of building a plug-in, so I was checking out some existing codes. – giga Sep 10 '12 at 9:27