Generator for a foreach loop to step through each class name for the matched tag.
Description
This generator function is designed to be used inside a "foreach" loop.
Example:
$p = WP_HTML_Processor::create_fragment( "<div class='free <egg<\tlang-en'>" );
$p->next_tag();
foreach ( $p->class_list() as $class_name ) {
echo "{$class_name} ";
}
// Outputs: "free <egg> lang-en "
Source
case '+BGSOUND':
case '+LINK':
$this->insert_html_element( $this->state->current_token );
Changelog
Version | Description |
---|---|
6.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.