wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



maybe_hash_hex_color › WordPress Function

Seit3.4.0
Veraltetn/v
maybe_hash_hex_color ( $color )
Parameter:
  • (string) $color
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
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().


Quellcode

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

	return $color;
}