wp_die_ajax_handler filter-hook . WP 3.4.0
Filters the callback for killing WordPress execution for Ajax requests.
Usage
add_filter( 'wp_die_ajax_handler', 'filter_function_name_1044' ); function filter_function_name_1044( $function ){ // filter... return $function; }
- $function(callable)
- Callback function name.
Where the hook is called
wp-includes/functions.php 2755
$function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );