Closes a P element.
Description
See also
Source
private function close_a_p_element(): void {
$this->generate_implied_end_tags( 'P' );
$this->state->stack_of_open_elements->pop_until( 'P' );
}
Changelog
| Version | Description |
|---|---|
| 6.4.0 | Introduced. |
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.
Closes a P element.
private function close_a_p_element(): void {
$this->generate_implied_end_tags( 'P' );
$this->state->stack_of_open_elements->pop_until( 'P' );
}
| Version | Description |
|---|---|
| 6.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.