wp_get_global_styles

函数
wp_get_global_styles ( $path = array(), $context = array() )
参数
  • (array) $path Path to the specific style to retrieve. Optional. If empty, will return all styles.
    Required:
    Default: array()
  • (array) $context { Metadata to know where to retrieve the $path from. Optional. @type string $block_name Which block to retrieve the styles from. If empty, it'll return the styles for the global context. @type string $origin Which origin to take data from. Valid values are 'all' (core, theme, and user) or 'base' (core and theme). If empty or unknown, 'all' is used. }
    Required:
    Default: array()
返回值
  • (array) The styles to retrieve.
定义位置
相关方法
wp_get_global_stylesheetwp_enqueue_global_styleswp_get_global_settingswp_get_global_styles_svg_filterswp_get_layout_style
引入
5.9.0
弃用
-

wp_get_global_styles: 这个函数返回global.css文件的内容,该文件用于WordPress管理界面的样式。

获取合并核心、主题和用户数据后的样式。

function wp_get_global_styles( $path = array(), $context = array() ) {
	if ( ! empty( $context['block_name'] ) ) {
		$path = array_merge( array( 'blocks', $context['block_name'] ), $path );
	}

	$origin = 'custom';
	if ( isset( $context['origin'] ) && 'base' === $context['origin'] ) {
		$origin = 'theme';
	}

	$styles = WP_Theme_JSON_Resolver::get_merged_data( $origin )->get_raw_data()['styles'];

	return _wp_array_get( $styles, $path, $styles );
}

常见问题

FAQs
查看更多 >