WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/apply filters ref array

Description

Execute functions hooked on a specific filter hook, specifying arguments in an array.

This function is identical to apply_filters, but the arguments passed to the functions hooked to $tag are supplied using an array.

Usage

 <?php apply_filters_ref_array$tag$args ); ?> 

Parameters

$tag
(string) (required) The name of the action to be executed.
Default: None
$args
(array) (required) The arguments supplied to the functions hooked to $tag
Default: None

Example

Call added filters and pass an array of arguments:

$args = array( 'arg_1', true, 'foo', 'arg_4' );

apply_filters_ref_array( 'my_filter', $args );

This is the same as:

apply_filters( 'my_filter', 'arg_1', true, 'foo', 'arg_4' );

Notes

  • This function can be useful when your arguments are already in an array, and/or when there are many arguments to pass. Just make sure that your arguments are in the proper order!
  • Before PHP 5.4, your callback is passed a reference pointer to the array. Your callback can use this pointer to access all the array elements. Adding a filter and declaring a call back that hooks the above example filter could look like this:
add_filter('my_filter', 'my_callback');
function my_callback( $args ) {
    //access values with $args[0], $args[1] etc.
}

Because the array was passed by reference, any changes to the array elements are applied to the original array outside of the function's scope.

  • Regardless of PHP version, you can specify the number of array elements when adding the filter, and receive each element in a separate parameter in the callback function declaration like so:
add_action('my_filter', 'my_callback', 10, 4 );
function my_callback( $arg1, $arg2, $arg3, $arg4 ) {
    //access values with $args1, $args2 etc.
}

This method copies the array elements into the parameter variables. Any changes to the parameter variables do not affect the original array.

  • As of PHP 5.4, the array is no longer passed by reference despite the function's name. You cannot even use the reference sign '&' because call time pass by reference now throws an error. What you can do is pass the reference pointer as an array element. Doing so does require all callbacks added to the filter to expect a reference pointer. This is not something you will see in WordPress actions. This technique is provided for informational purposes only.
apply_filters_ref_array( 'my_filter', array( &$args ));

add_action('my_filter', 'my_callback');
function my_callback( &$args ) {
    //access values with $args[0], $args[1] etc.
}

Because the original array was passed by reference, any changes to the array elements are applied to the original array outside of the function's scope.

Change Log

Since: 3.0.0

Source File

apply_filters_ref_array() is located in wp-includes/plugin.php.

Related

Filter Functions:

See also index of Function Reference and index of Template Tags.
This page is marked as incomplete. You can help Codex by expanding it.