wp_custom_css_cb()

Render 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() ) : ?>
		<style type="text/css" id="wp-custom-css">
			<?php echo strip_tags( $styles ); // Note that esc_html() cannot be used because `div &gt; span` is not interpreted properly. ?>
		</style>
	<?php endif;
}


Changelog

Changelog
Version Description
WP-4.7.0 Introduced.