WP_Customize_Manager::wp_redirect_status PHP Method

wp_redirect_status() public method

Instead, the JS will sniff out the location header.
Deprecation: 4.7.0
Since: 3.4.0
public wp_redirect_status ( integer $status ) : integer
$status integer Status.
return integer
    public function wp_redirect_status($status)
    {
        _deprecated_function(__FUNCTION__, '4.7.0');
        if ($this->is_preview() && !is_admin()) {
            return 200;
        }
        return $status;
    }
WP_Customize_Manager