wpseek.com
WordPress开发者和主题制作者的搜索引擎



attribute_escape › WordPress Function

Since2.0.6
已弃用2.8.0
attribute_escape ( $text )
参数:
  • (string) $text
    Required: Yes
查看:
返回:
  • (string)
定义在:
文档:

Escaping for HTML attributes.



源码

function attribute_escape( $text ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
	return esc_attr( $text );
}