WP_Duotone::get_css_custom_property_name()private staticWP 6.3.0

Gets the CSS variable name for a duotone preset.

Example output:
--wp--preset--duotone--blue-orange

Метод класса: WP_Duotone{}

Хуков нет.

Возвращает

Строку. The CSS variable name.

Использование

$result = WP_Duotone::get_css_custom_property_name( $slug );
$slug(строка) (обязательный)
The slug of the duotone preset.

Список изменений

С версии 6.3.0 Введена.

Код WP_Duotone::get_css_custom_property_name() WP 6.6.2

private static function get_css_custom_property_name( $slug ) {
	return "--wp--preset--duotone--$slug";
}