2815 | | * @param string $message Optional. Response to print. Default empty. |
2816 | | */ |
2817 | | function _ajax_wp_die_handler( $message = '' ) { |
| 2815 | * @param string $message Error message. |
| 2816 | * @param string $title Optional. Error title. Default empty. |
| 2817 | * @param string|array $args Optional. Arguments to control behavior. Default empty array. |
| 2818 | */ |
| 2819 | function _ajax_wp_die_handler( $message, $title = '', $args = array() ) { |
| 2820 | $defaults = array( |
| 2821 | 'response' => 200, |
| 2822 | ); |
| 2823 | $r = wp_parse_args( $args, $defaults ); |
| 2824 | |
| 2825 | if ( ! headers_sent() ) { |
| 2826 | status_header( $r['response'] ); |
| 2827 | } |