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.
Method of the class: WP_HTML_Processor{}
No Hooks.
Return
true|false
. Whether an element was found.
Usage
// private - for code of main (parent) class only $result = $this->step_in_table_text(): bool;
Notes
Changelog
Since 6.7.0 | Introduced. |
Since 6.7.0 | Stub implementation. |
WP_HTML_Processor::step_in_table_text() WP HTML Processor::step in table text code WP 6.7.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.' ); }