WP_Interactivity_API_Directives_Processor::skip_to_tag_closer()
Skips processing the content between tags.
It positions the cursor in the closer tag of the foreign element, if it exists.
This function is intended to skip processing SVG and MathML inner content instead of bailing out the whole processing.
Method of the class: WP_Interactivity_API_Directives_Processor{}
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Returns
true|false
. Whether the foreign content was successfully skipped.
Usage
$WP_Interactivity_API_Directives_Processor = new WP_Interactivity_API_Directives_Processor(); $WP_Interactivity_API_Directives_Processor->skip_to_tag_closer(): bool;
Changelog
Since 6.5.0 | Introduced. |
WP_Interactivity_API_Directives_Processor::skip_to_tag_closer() WP Interactivity API Directives Processor::skip to tag closer code WP 6.8.1
public function skip_to_tag_closer(): bool { $depth = 1; $tag_name = $this->get_tag(); while ( $depth > 0 && $this->next_tag( array( 'tag_closers' => 'visit' ) ) ) { if ( ! $this->is_tag_closer() && $this->get_attribute_names_with_prefix( 'data-wp-' ) ) { /* translators: 1: SVG or MATH HTML tag. */ $message = sprintf( __( 'Interactivity directives were detected inside an incompatible %1$s tag. These directives will be ignored in the server side render.' ), $tag_name ); _doing_it_wrong( __METHOD__, $message, '6.6.0' ); } if ( $this->get_tag() === $tag_name ) { if ( $this->has_self_closing_flag() ) { continue; } $depth += $this->is_tag_closer() ? -1 : 1; } } return 0 === $depth; }