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



get_shortcode_atts_regex › WordPress Function

Seit4.4.0
Veraltetn/v
get_shortcode_atts_regex ( Keine Parameter )
Gibt zurück:
  • (string) The shortcode attribute regular expression.
Definiert in:
Codex:

Retrieves the shortcode attributes regex.



Quellcode

function get_shortcode_atts_regex() {
	return '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|\'([^\']*)\'(?:\s|$)|(\S+)(?:\s|$)/';
}