wp_custom_css_cb() WordPress Function
The wp_custom_css_cb() function is used to print custom CSS to the WordPress header. This is useful for adding CSS rules that should be applied to the entire site.
wp_custom_css_cb() #
Renders the Custom CSS style element.
Source
File: wp-includes/theme.php
function wp_custom_css_cb() {
$styles = wp_get_custom_css();
if ( $styles || is_customize_preview() ) :
$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
?>
<style<?php echo $type_attr; ?> id="wp-custom-css">
<?php
// Note that esc_html() cannot be used because `div > span` is not interpreted properly.
echo strip_tags( $styles );
?>
</style>
<?php
endif;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |