I'm trying to understand some of the function in WordPress, but I can't get my head around what apply_filters(...) actually does.
Is someone able to clear this up for me with a few examples?
I'm trying to understand some of the function in WordPress, but I can't get my head around what apply_filters(...) actually does.
Is someone able to clear this up for me with a few examples?
apply_filters($tag, $value)
passes the 'value' argument to each of the functions 'hooked' (using add_filter
) into the specified filter 'tag'. Each function performs some processing on the value and returns a modified value to be passed to the next function in the sequence.
For example, by default (in WordPress 2.9) the the_content
filter passes the value through the following sequence of functions:
late answer
apply_filters()
interacts with the global $wp_filters
array. Basically it just checks the array if the current filter (or hook) has an action(/callback function) attached and then calls it.
When you attach a callback/action to a filter or hook, then you just add the callback name to global filters array. When then, in code (for e.g. a template, core or plugin file) a call to do_action()
or apply_filters()
happens, then WordPress searched through the array and calls the callback. The only thing more special with filters than with hooks is, that it returns the value (for further handling) instead of just firing the callback. So summed up: Hooks are to insert data, while filters are to modify data.
Here's what I'm gleaning, upon considering the most popular answer and additional resources:
<p>
tags, smiley faces will convert to icons, etc.In the most basic terms, apply_filters is used to initialise a filter hook... add_filter assigns a new function to hooks that have already been created.