infinite_scroll_allowed_vars
Update the $query_args array with the parameters provided via AJAX/GET.
Description
Returns (array)
Parameters (2)
- 0. $array (array) =>
array()
- The array.
- 1. $query_args (unknown)
- The query args.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'infinite_scroll_allowed_vars', $array, $query_args );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the infinite_scroll_allowed_vars callback
- function filter_infinite_scroll_allowed_vars( $array, $query_args ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'infinite_scroll_allowed_vars', 'filter_infinite_scroll_allowed_vars', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'infinite_scroll_allowed_vars', 'filter_infinite_scroll_allowed_vars', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /modules/infinite-scroll/infinity.php
- $allowed_vars = apply_filters( 'infinite_scroll_allowed_vars', array(), $query_args );