WP_Duotone::get_css_var()
Get the CSS variable for a duotone preset.
Example output: var(--wp--preset--duotone--blue-orange)
Метод класса: WP_Duotone{}
Хуков нет.
Возвращает
Строку
. The CSS variable.
Использование
$result = WP_Duotone::get_css_var( $slug );
- $slug(строка) (обязательный)
- The slug of the duotone preset.
Список изменений
С версии 6.3.0 | Введена. |
Код WP_Duotone::get_css_var() WP Duotone::get css var WP 6.6.2
private static function get_css_var( $slug ) { $name = self::get_css_custom_property_name( $slug ); return "var($name)"; }