status_header
Filters an HTTP status header.
Usage
add_filter( 'status_header', 'wp_kama_status_header_filter', 10, 4 );
/**
* Function for `status_header` filter-hook.
*
* @param string $status_header HTTP status header.
* @param int $code HTTP status code.
* @param string $description Description for the status code.
* @param string $protocol Server protocol.
*
* @return string
*/
function wp_kama_status_header_filter( $status_header, $code, $description, $protocol ){
// filter...
return $status_header;
}
- $status_header(string)
- HTTP status header.
- $code(int)
- HTTP status code.
- $description(string)
- Description for the status code.
- $protocol(string)
- Server protocol.
Changelog
| Since 2.2.0 | Introduced. |
Where the hook is called
status_header
wp-includes/functions.php 1481
$status_header = apply_filters( 'status_header', $status_header, $code, $description, $protocol );