wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_get_duotone_filter_svg › WordPress Function

Da5.9.1
Deprecato6.3.0
wp_get_duotone_filter_svg ( $preset )
Accedi:
  • private
Parametri:
  • (array) $preset Duotone preset value as seen in theme.json.
    Richiesto:
Ritorna:
  • (string) Duotone SVG filter.
Definito a:
Codex:

Returns the duotone filter SVG string for the preset.



Sorgenti

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