wp_enqueue_block_support_styles

函式
wp_enqueue_block_support_styles ( $style, $priority = 10 )
引數
  • (string) $style String containing the CSS styles to be added.
    Required:
  • (int) $priority To set the priority for the add_action.
    Required:
    Default: 10
定義位置
相關方法
wp_enqueue_block_stylewp_enqueue_stored_styleswp_enqueue_global_styleswp_render_elements_support_styleswp_enqueue_registered_block_scripts_and_styles
引入
5.9.1
棄用
-

wp_enqueue_block_support_styles: 這個函式用來為WordPress塊編輯器中的所有支援的塊提取樣式。這對於一次性定製多個塊的樣式很有用。

根據活動主題,將內聯樣式掛在適當的位置。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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
);
}
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 ); }
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
	);
}

常見問題

FAQs
檢視更多 >