This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Custom wp_die handler for consistent error pages | |
| */ | |
| function sf_custom_wp_die_handler($message, $title = '', $args = array()) { | |
| // Default values | |
| $defaults = array( | |
| 'response' => 500, | |
| 'back_link' => false, | |
| 'text_direction' => 'ltr', | |
| 'charset' => 'UTF-8', |