wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_get_duotone_filter_id › WordPress Function

Seit5.9.1
Veraltet6.3.0
wp_get_duotone_filter_id ( $preset )
Zugriff:
  • private
Parameter:
  • (array) $preset Duotone preset value as seen in theme.json.
    Erforderlich: Ja
Gibt zurück:
  • (string) Duotone filter CSS id.
Definiert in:
Codex:

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



Quellcode

function wp_get_duotone_filter_id( $preset ) {
	_deprecated_function( __FUNCTION__, '6.3.0' );
	return WP_Duotone::get_filter_id_from_preset( $preset );
}