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



strip_shortcode_tag › WordPress Function

Seit3.3.0
Veraltetn/v
strip_shortcode_tag ( $m )
Parameter:
  • (array) $m RegEx matches against post content.
    Erforderlich: Ja
Gibt zurück:
  • (string|false) The content stripped of the tag, otherwise false.
Definiert in:
Codex:

Strips a shortcode tag based on RegEx matches against post content.



Quellcode

function strip_shortcode_tag( $m ) {
	// Allow [[foo]] syntax for escaping a tag.
	if ( '[' === $m[1] && ']' === $m[6] ) {
		return substr( $m[0], 1, -1 );
	}

	return $m[1] . $m[6];
}