WC_API_XML_Handler::get_content_type()publicWC 2.1

Get the content type for the response

Метод класса: WC_API_XML_Handler{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_API_XML_Handler = new WC_API_XML_Handler();
$WC_API_XML_Handler->get_content_type();

Список изменений

С версии 2.1 Введена.

Код WC_API_XML_Handler::get_content_type() WC 8.7.0

public function get_content_type() {

	return 'application/xml; charset=' . get_option( 'blog_charset' );
}