wp_parse_str filter-hook . WP 2.3.0
Filters the array of variables derived from a parsed string.
Usage
add_filter( 'wp_parse_str', 'filter_function_name_76' ); function filter_function_name_76( $array ){ // filter... return $array; }
- $array(array)
- The array populated with variables.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
wp_parse_str
wp-includes/formatting.php 4955
$array = apply_filters( 'wp_parse_str', $array );