/wp-hooks

WordPress Hooks

Primary LanguagePHP

WordPress Hooks

Note:

* we need to use same number of  parameter inside add action as we used in do action but at the call back function we can use parameter as we need.
* we need to use echo before apply_filters
* 

action Hook:

* do_action();
* add_action();
* remove_action();

Filter Hook:

* Apply_filters();
* Add_filter();
* Remove_filter();