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



wp_render_duotone_support › WordPress Function

Seit5.8.0
Veraltet6.3.0
wp_render_duotone_support ( $block_content, $block )
Zugriff:
  • private
Parameter: (2)
  • (string) $block_content Rendered block content.
    Erforderlich: Ja
  • (array) $block Block object.
    Erforderlich: Ja
Gibt zurück:
  • (string) Filtered block content.
Definiert in:
Codex:
Changelog:
  • 6.1.0

Renders out the duotone stylesheet and SVG.



Quellcode

function wp_render_duotone_support( $block_content, $block ) {
	_deprecated_function( __FUNCTION__, '6.3.0', 'WP_Duotone::render_duotone_support()' );
	$wp_block = new WP_Block( $block );
	return WP_Duotone::render_duotone_support( $block_content, $block, $wp_block );
}