You appear to be a bot. Output may be restricted
Description
Handles the WP die handler by outputting the given values as text.
Usage
_wp_die_handler( $message, $title, $args );
Parameters
- $message
- ( string ) required – The message.
- $title
- ( string ) optional – The title.
- $args
- ( array ) optional – Array with arguments.
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/functions.php
Lines:
1 to 8 of 8
function _wp_die_handler( $message, $title = '', $args = array() ) { if ( ! $GLOBALS['_wp_die_disabled'] ) { _wp_die_handler_txt( $message, $title, $args ); } else { // Ignore at our peril. } }