shortcode_exists

函数
shortcode_exists ( $tag )
参数
  • (string) $tag Shortcode tag to check.
    Required:
返回值
  • (bool) Whether the given shortcode exists.
定义位置
相关方法
shortcode_attsshortcode_parse_attsget_shortcode_regexdo_shortcode_tagpost_exists
引入
3.6.0
弃用
-

shortcode_exists: 这是一个WordPress函数,用于检查一个给定的短码是否存在。它通常被用来确定一个短码是否可以在一个特定的环境中使用: 这个函数需要一个参数,就是短码的名称。

确定是否存在一个名为$tag的注册短码。

function shortcode_exists( $tag ) {
	global $shortcode_tags;
	return array_key_exists( $tag, $shortcode_tags );
}

常见问题

FAQs
查看更多 >