WP_Styles::add_inline_style
Adds extra CSS styles to a registered stylesheet.
Method of the class: WP_Styles{}
No Hooks.
Returns
true|false. True on success, false on failure.
Usage
global $wp_styles; $wp_styles->add_inline_style( $handle, $code );
- $handle(string) (required)
- The style's registered handle.
- $code(string) (required)
- String containing the CSS styles to be added.
Changelog
| Since 3.3.0 | Introduced. |
WP_Styles::add_inline_style() WP Styles::add inline style code WP 7.0
public function add_inline_style( $handle, $code ) {
if ( ! $code ) {
return false;
}
$after = $this->get_data( $handle, 'after' );
if ( ! $after ) {
$after = array();
}
$after[] = $code;
return $this->add_data( $handle, 'after', $after );
}