wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



block_core_navigation_overlay_html_has_close_block › WordPress Function

Seit7.0.0
Veraltetn/v
block_core_navigation_overlay_html_has_close_block ( $html )
Parameter:
  • (string) $html The rendered overlay HTML.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if a close button element is found.
Definiert in:
Codex:

Checks if the overlay HTML contains a navigation-overlay-close block.

Uses WP_HTML_Tag_Processor to detect the close button in rendered output, so it works when the overlay uses patterns (pattern content is rendered at output time, not in the block tree).


Quellcode

function block_core_navigation_overlay_html_has_close_block( $html ) {
	$tags = new WP_HTML_Tag_Processor( $html );
	return $tags->next_tag(
		array(
			'tag_name'   => 'BUTTON',
			'class_name' => 'wp-block-navigation-overlay-close',
		)
	);
}