wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_tag_regex › WordPress Function

Depuis3.6.0
Dépréciéen/a
get_tag_regex ( $tag )
Paramètres:
  • (string) $tag An HTML tag name. Example: 'video'.
    Requis: Oui
Retourne:
  • (string) Tag RegEx.
Défini(e) dans:
Codex:

Returns RegEx body to liberally match an opening HTML tag.

Matches an opening HTML tag that: 1. Is self-closing or 2. Has no body but has a closing tag of the same name or 3. Contains a body and a closing tag of the same name Note: this RegEx does not balance inner tags and does not attempt to produce valid HTML


Source

function get_tag_regex( $tag ) {
	if ( empty( $tag ) ) {
		return '';
	}
	return sprintf( '<%1$s[^<]*(?:>[\s\S]*<\/%1$s>|\s*\/>)', tag_escape( $tag ) );
}