wpseek.com
A WordPress-centric search engine for devs and theme authors



maybe_hash_hex_color › WordPress Function

Since3.4.0
Deprecatedn/a
maybe_hash_hex_color ( $color )
Parameters:
  • (string) $color The color value to add the hash prefix to. Can be with or without a #.
    Required: Yes
Returns:
  • (string) The color with the hash prefix if it's a valid hex color, otherwise the original value.
Defined at:
Codex:

Ensures that any hex color is properly hashed.

Otherwise, returns value untouched. This method should only be necessary if using sanitize_hex_color_no_hash().


Source

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

	return $color;
}