I have been looking at the plugin API a bit more in depth recently and I was wondering what real differences there were between action and filter hooks. They both are events that receive data as a parameter and they seem to both be able to do the same things.
Obviously I see that actions are called when actions take place and filters are called when data is manipulated, but it seems to just be a semantic naming difference.
Besides semantics and what they are used for, what real differences are there between them?
Hi @Sruly:
You’ve pretty much answered your own question, but I’ll elaborate a bit.
Action Hooks
Actions Hooks are intended for use when WordPress core or some plugin or theme is giving you the opportunity to insert your code at a certain point and do one or more of the following:
echo
to inject some HTML or other content into the response buffer,do_action_ref_array()
instead ofdo_action()
since the latter does not support passing variables by-reference.)Filter Hooks
Filter Hooks behave very similar to Action Hooks but their intended use is to receive a value and potentially return a modified version of the value. A filter hook could also be used just like an Action Hook i.e. to modify a global variable or generate some HTML, assuming that’s what you need to do when the hook is called. One thing that is very important about Filter Hooks that you don’t need to worry about with Action Hooks is that the person using a Filter Hook must return (a modified version of) the first parameter it was passed. A common newbie mistake is to forget to return that value!
Using Additional Parameters to Provide Context in Filter Hooks
As an aside I felt that Filter Hooks were hobbled in earlier versions of WordPress because they would receive only one parameter; i.e they would get a value to modify but no 2nd or 3rd parameters to provide any context. Lately, and positively however, it seems the WordPress core team has joyously (for me) been adding extra parameters to Filter Hooks so that you can discover more context. A good example is the
posts_where
hook; I believe a few versions back it only accepted one parameter being the current query’s “where” class SQL but now it accepts both the where clause and a reference to current instance of theWP_Query
class that is invoking the hook.So what’s the Real Difference?
In reality Filter Hooks are pretty much a superset of Action Hooks. The former can do anything the latter can do and a bit more albeit the developer doesn’t have the responsibility to return a value with the Action Hook that he or she does with the Filter Hook.
Giving Guidance and Telegraphing Intent
But that’s probably not what is important. I think what is important is that by a developer choosing to use an Action Hook vs. a Filter Hook or vice versa they are telegraphing their intent and thus giving guidance to the themer or plugin developer who might be using the hook. In essence they are saying either “I’m going to call you, do whatever you need to do” OR “I’ve going to pass you this value to modify but be sure that you pass it back.”
So ultimately I think that guidance provided by the choice of hook type is the real value behind the distinction. IMO, anyway.
Hope this helps!
If you look at the source for the
add_action()
core function, it’s just a wrapper foradd_filter()
function…And if you look at the
do_action()
core function, it’s very similar to theapply_filters()
core function, with one very key difference: it does not return a value.So what does this mean? actions are like filters, except an action does not return a value, so you cannot modify data. It shows that it was simple to create the WordPress’ action mechanism by simply copying the filter mechanism, and not returning a value. Basically, all you can do with an action is simply execute a function without modifying some value.
In simple word’s.
Updated: We can extend any plugin which use the actions and filters without modifying there code. By adding filters and actions in our own theme or plugin.
How to use?
Action:
Check below simple examples in your theme
functions.php
file.Above program print the output:
[NOTE: Here test() simply call the function. And execute the callback function ‘test’.]
Above program print the output:
[NOTE: Here
do_action('test')
works like calling function. And execute callback function ‘test1’.]Above program print the output:
[NOTE: Here
do_action('test')
works like calling function. And execute callback functions on it’s priorities.Callback function ‘test1’ has priority 2 And ‘test2’ has priority 1. ]
If priorities are change like ‘test1’ with priority 1 And ‘test2’ with priority 2 then output will be:
Add below code in
functions.php
Above program print the output:
Now, Create sample plugin to check how it works for 3rd party Developer.
/wp-content/plugins/
directory.Now, Activate our Simple plugin from WordPress admin dashboard.
Goto menu plugin and activate it.
After activate plugin above program print the output:
[NOTE: If we add the priority for our plugin action from 1 to 9 then it print the output like:
Because, WordPress consider the
10 priority by default
for all the added actions.]Filters
Check the below examples:
Simple PHP example:
Above program print the output:
Above program print the output:
Here, We have added filter
my_filter_name
and change the existing outputarray( 'one', 'two' )
witharray( 'three', 'four' )
without changing the theme/plugin files.The main difference between an action and a filter can be summed up like this:
returns nothing. In other words: it acts on something and then exits,
returning nothing back to the calling hook.
it. In other words: it filters something and passes it back to the
hook for further use.
Said another way:
back to the normal flow without modifying anything;
modification is then used by code later on.
The something referred to is the parameter list sent via the hook definition.
From the official WP documentation