WP_Duotone::is_preset()
Checks if we have a valid duotone preset.
Valid presets are defined in the $global_styles_presets array.
Метод класса: WP_Duotone{}
Хуков нет.
Возвращает
true|false
. True if the duotone preset present and valid.
Использование
$result = WP_Duotone::is_preset( $duotone_attr );
- $duotone_attr(строка) (обязательный)
- The duotone attribute from a block.
Список изменений
С версии 6.3.0 | Введена. |
Код WP_Duotone::is_preset() WP Duotone::is preset WP 6.6.2
private static function is_preset( $duotone_attr ) { $slug = self::get_slug_from_attribute( $duotone_attr ); $filter_id = self::get_filter_id( $slug ); return array_key_exists( $filter_id, self::get_all_global_styles_presets() ); }