wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_custom_css_cb › WordPress Function
Since4.7.0
Deprecatedn/a
› wp_custom_css_cb ( No parameters )
Defined at: |
|
Codex: |
Renders the Custom CSS style element.
Related Functions: wp_get_custom_css, wp_get_custom_css_post, wp_update_custom_css_post, _custom_background_cb, wp_customize_url
Source
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;
}