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



wp_enqueue_block_support_styles › WordPress Function

Seit5.9.1
Veraltetn/v
wp_enqueue_block_support_styles ( $style, $priority = 10 )
Parameter: (2)
  • (string) $style String containing the CSS styles to be added.
    Erforderlich: Ja
  • (int) $priority To set the priority for the add_action.
    Erforderlich: Nein
    Standard: 10
Links:
Definiert in:
Codex:
Changelog:
  • 6.1.0

Hooks inline styles in the proper place, depending on the active theme.



Quellcode

function wp_enqueue_block_support_styles( $style, $priority = 10 ) {
	$action_hook_name = 'wp_footer';
	if ( wp_is_block_theme() ) {
		$action_hook_name = 'wp_head';
	}
	add_action(
		$action_hook_name,
		static function () use ( $style ) {
			echo "<style>$style</style>\n";
		},
		$priority
	);
}