WP_HTML_Tag_Processor::after_tag() – Applies attribute updates and cleans up once a tag is fully parsed.

You appear to be a bot. Output may be restricted

Description

Applies attribute updates and cleans up once a tag is fully parsed.

Usage

WP_HTML_Tag_Processor::after_tag();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/html-api/class-wp-html-tag-processor.php


Lines:

1 to 9 of 9
  private function after_tag() {
    $this->get_updated_html();
    $this->tag_name_starts_at = null;
    $this->tag_name_length    = null;
    $this->tag_ends_at        = null;
    $this->is_closing_tag     = null;
    $this->attributes         = array();
  }
 

 View on GitHub View on Trac