wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_scalar_wp_die_handler › WordPress Function

Depuis3.4.0
Dépréciéen/a
_scalar_wp_die_handler ( $message = '', $title = '', $args = array() )
Accès:
  • private
Paramètres: (3)
  • (string) $message Optional. Response to print. Default empty string.
    Requis: Non
    Défaut: (vide)
  • (string) $title Optional. Error title (unused). Default empty string.
    Requis: Non
    Défaut: (vide)
  • (string|array) $args Optional. Arguments to control behavior. Default empty array.
    Requis: Non
    Défaut: array()
Défini(e) dans:
Codex:
Changelog:
  • 5.1.0

Kills WordPress execution and displays an error message.

This is the handler for wp_die() when processing APP requests.


Source

function _scalar_wp_die_handler( $message = '', $title = '', $args = array() ) {
	list( $message, $title, $parsed_args ) = _wp_die_process_input( $message, $title, $args );

	if ( $parsed_args['exit'] ) {
		if ( is_scalar( $message ) ) {
			die( (string) $message );
		}
		die();
	}

	if ( is_scalar( $message ) ) {
		echo (string) $message;
	}
}