rest_parse_hex_color( string $color )
Parses a 3 or 6 digit hex color (with #).
Parameters Parameters
- $color
-
(string) (Required) 3 or 6 digit hex color (with #).
Return Return
(string|false)
Source Source
File: wp-includes/rest-api.php
function rest_parse_hex_color( $color ) { $regex = '|^#([A-Fa-f0-9]{3}){1,2}$|'; if ( ! preg_match( $regex, $color, $matches ) ) { return false; } return $color; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.4.0 | Introduced. |