wp_add_inline_style

函数


wp_add_inline_style ( $handle, $data )
参数
  • (string)
    $handle
    Name of the stylesheet to add the extra styles to.
    Required:
  • (string)
    $data
    String containing the CSS styles to be added.
    Required:
返回值
  • (bool) True on success, false on failure.
相关
  • WP_Styles::add_inline_style()
定义位置
  • wp-includes/functions.wp-styles.php
    , line 87
引入
3.3.0
弃用

Add extra CSS styles to a registered stylesheet.

Styles will only be added if the stylesheet is already in the queue.
Accepts a string $data containing the CSS. If two or more CSS code blocks
are added to the same stylesheet $handle, they will be printed in the order
they were added, i.e. the latter added styles can redeclare the previous.

function wp_add_inline_style( $handle, $data ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	if ( false !== stripos( $data, '' ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: 1: #is', '$1', $data ) );
	}

	return wp_styles()->add_inline_style( $handle, $data );
}