maybe_hash_hex_color

函数
maybe_hash_hex_color ( $color )
参数
  • (string) $color
    Required:
返回值
  • (string)
定义位置
相关方法
_maybe_update_coremaybe_add_columnrest_parse_hex_colorsanitize_hex_colormaybe_add_existing_user_to_blog
引入
3.4.0
弃用
-

maybe_hash_hex_color: 这是WordPress中的一个函数,允许你对一个十六进制的颜色代码进行散列: 这个函数检查颜色代码是否是有效的十六进制颜色代码,如果是,它就对颜色代码进行散列。

确保任何十六进制的颜色都是正确的哈希值。

否则,返回未处理的值。

只有在使用sanitize_hex_color_no_hash()时才需要这个方法。

function maybe_hash_hex_color( $color ) {
	$unhashed = sanitize_hex_color_no_hash( $color );
	if ( $unhashed ) {
		return '#' . $unhashed;
	}

	return $color;
}

常见问题

FAQs
查看更多 >