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



wp_enqueue_block_support_styles › WordPress Function

Since5.9.1
已弃用n/a
wp_enqueue_block_support_styles ( $style, $priority = 10 )
参数: (2)
  • (string) $style String containing the CSS styles to be added.
    Required: Yes
  • (int) $priority To set the priority for the add_action.
    Required: No
    默认: 10
链接:
定义在:
文档:
Change Log:
  • 6.1.0

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



源码

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
	);
}