WP_HTTP_Response::set_status( int $code )

Sets the 3-digit HTTP status code.


Description Description


Parameters Parameters

$code

(int) (Required) HTTP status.


Top ↑

Source Source

File: wp-includes/class-wp-http-response.php

	public function set_status( $code ) {
		$this->status = absint( $code );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.