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