wp_die_jsonp_handler filter-hook . WP 5.2.0
Filters the callback for killing WordPress execution for JSONP requests.
Usage
add_filter( 'wp_die_jsonp_handler', 'filter_function_name_9572' ); function filter_function_name_9572( $function ){ // filter... return $function; }
- $function(callable)
- Callback function name.
Changelog
Since 5.2.0 | Introduced. |
Where the hook is called
wp_die_jsonp_handler
wp-includes/functions.php 3386
$function = apply_filters( 'wp_die_jsonp_handler', '_jsonp_wp_die_handler' );