WP_Duotone::get_filter_id_from_preset()public staticWP 6.3.0

Устарела с версии 6.3.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.

Returns the prefixed id for the duotone filter for use as a CSS id.

Exported for the deprecated function wp_get_duotone_filter_id().

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

Хуков нет.

Возвращает

Строку. Duotone filter CSS id.

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

$result = WP_Duotone::get_filter_id_from_preset( $preset );
$preset(массив) (обязательный)
Duotone preset value as seen in theme.json.

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

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

Код WP_Duotone::get_filter_id_from_preset() WP 6.6.2

public static function get_filter_id_from_preset( $preset ) {
	_deprecated_function( __FUNCTION__, '6.3.0' );

	$filter_id = '';
	if ( isset( $preset['slug'] ) ) {
		$filter_id = self::get_filter_id( $preset['slug'] );
	}
	return $filter_id;
}