wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



status_header › WordPress Function

Da2.0.0
Deprecaton/a
status_header ( $code, $description = '' )
Parametri: (2)
  • (int) $code HTTP status code.
    Richiesto:
  • (string) $description Optional. A custom description for the HTTP status. Defaults to the result of get_status_header_desc() for the given code.
    Richiesto: No
    Default: (vuoto)
Vedi:
Definito a:
Codex:
ChangeLog:
  • 4.4.0

Sets HTTP status header.



Sorgenti

function status_header( $code, $description = '' ) {
	if ( ! $description ) {
		$description = get_status_header_desc( $code );
	}

	if ( empty( $description ) ) {
		return;
	}

	$protocol      = wp_get_server_protocol();
	$status_header = "$protocol $code $description";
	if ( function_exists( 'apply_filters' ) ) {

		/**
		 * Filters an HTTP status header.
		 *
		 * @since 2.2.0
		 *
		 * @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.
		 */
		$status_header = apply_filters( 'status_header', $status_header, $code, $description, $protocol );
	}

	if ( ! headers_sent() ) {
		header( $status_header, true, $code );
	}
}