wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



maybe_hash_hex_color › WordPress Function

Od3.4.0
Przestarzałyn/a
maybe_hash_hex_color ( $color )
Parametry:
  • (string) $color
    Wymagane: Tak
Powrót:
  • (string)
Zdefiniowane na:
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().


Źródło

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

	return $color;
}