get_shortcode_atts_regex

函数
get_shortcode_atts_regex ( No parameters )
返回值
  • (string) The shortcode attribute regular expression.
定义位置
相关方法
get_shortcode_regexshortcode_attsdo_shortcode_tagget_tag_regexstrip_shortcode_tag
引入
4.4.0
弃用
-

get_shortcode_atts_regex函数是一个WordPress函数,检索用于解析短码属性的正则表达式模式: 这个函数不需要参数,并返回正则表达式模式。

检索短码属性重码。

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

常见问题

FAQs
查看更多 >