WP_HTML_Processor::step_in_table_text
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;
Заметки
- Смотрите: https://html.spec.whatwg.org/#parsing-main-intabletext
- Смотрите: WP_HTML_Processor::step
Список изменений
| С версии 6.7.0 | Введена. |
| С версии 6.7.0 | Stub implementation. |
Код WP_HTML_Processor::step_in_table_text() WP HTML Processor::step in table text WP 7.0.4
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.' );
}