wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_get_duotone_filter_svg › WordPress Function

Since5.9.1
已弃用6.3.0
wp_get_duotone_filter_svg ( $preset )
访问:
  • private
参数:
  • (array) $preset Duotone preset value as seen in theme.json.
    Required: Yes
返回:
  • (string) Duotone SVG filter.
定义在:
文档:

Returns the duotone filter SVG string for the preset.



源码

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