WP_HTML_Processor::step_in_table_text()privateWP 6.7.0

Parses next element in the 'in table text' insertion mode.

This internal function performs the 'in table text' insertion mode logic for the generalized WP_HTML_Processor::step() function.

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

Хуков нет.

Возвращает

true|false. Whether an element was found.

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

// private - только в коде основоного (родительского) класса
$result = $this->step_in_table_text(): bool;

Заметки

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

С версии 6.7.0 Введена.
С версии 6.7.0 Stub implementation.

Код WP_HTML_Processor::step_in_table_text() WP 6.8.1

private function step_in_table_text(): bool {
	$this->bail( 'No support for parsing in the ' . WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_TEXT . ' state.' );
}