"WordPress Error" on title of tab
Whenever I cancel or confirm an appointment, it takes me to a page where the title of the tab of the browser says "wordpress error".
Is there anyway to change the title?
2 Answers
You can use custom die handler
add_filter('wp_die_handler', 'get_custom_die_handler' );
function get_custom_die_handler() {
return 'custom_die_handler';
} function custom_die_handler( $message, $title="", $args = array() ) {
echo '<html><body>';
echo '<h1>Message:</h1>';
echo $message; /* No escaping, to match the default behaviour */
echo '</body></html>';
die();
}
return 'custom_die_handler';
} function custom_die_handler( $message, $title="", $args = array() ) {
echo '<html><body>';
echo '<h1>Message:</h1>';
echo $message; /* No escaping, to match the default behaviour */
echo '</body></html>';
die();
}
Please login or Register to submit your answer