WP_HTML_Open_Elements::pop(): bool

In this article

Pops a node off of the stack of open elements.

Description

See also

Return

bool Whether a node was popped off of the stack.

Source

 *
 * @param string $tag_name Name of tag to check.
 * @return bool Whether given element is in scope.
 */
public function has_element_in_table_scope( $tag_name ) {
	throw new WP_HTML_Unsupported_Exception( 'Cannot process elements depending on table scope.' );

	return false; // The linter requires this unreachable code until the function is implemented and can return.
}

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.