wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_get_duotone_filter_property › WordPress Function

Od5.9.0
Przestarzały6.3.0
wp_get_duotone_filter_property ( $preset )
Dostęp:
  • private
Parametry:
  • (array) $preset Duotone preset value as seen in theme.json.
    Wymagane: Tak
Powrót:
  • (string) Duotone CSS filter property url value.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 6.1.0

Returns the CSS filter property url to reference the rendered SVG.



Źródło

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