WP_Duotone::get_filter_css_property_value_from_preset()
Устарела с версии 6.3.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Gets the CSS filter property value from a preset.
Exported for the deprecated function wp_get_duotone_filter_id().
Метод класса: WP_Duotone{}
Хуков нет.
Возвращает
Строку
. The CSS filter property value.
Использование
$result = WP_Duotone::get_filter_css_property_value_from_preset( $preset );
- $preset(массив) (обязательный)
- The duotone preset.
Список изменений
С версии 6.3.0 | Введена. |
Устарела с | 6.3.0 |
Код WP_Duotone::get_filter_css_property_value_from_preset() WP Duotone::get filter css property value from preset WP 6.6.2
public static function get_filter_css_property_value_from_preset( $preset ) { _deprecated_function( __FUNCTION__, '6.3.0' ); if ( isset( $preset['colors'] ) && is_string( $preset['colors'] ) ) { return $preset['colors']; } $filter_id = self::get_filter_id_from_preset( $preset ); return 'url(#' . $filter_id . ')'; }