wp_get_custom_css( string $stylesheet = '' )
Fetch the saved Custom CSS content for rendering.
Parameters
- $stylesheet
-
(Optional) A theme object stylesheet name. Defaults to the current theme.
Default value: ''
Return
(string) The Custom CSS Post content.
Source
File: wp-includes/theme.php
function wp_get_custom_css( $stylesheet = '' ) {
$css = '';
if ( empty( $stylesheet ) ) {
$stylesheet = get_stylesheet();
}
$post = wp_get_custom_css_post( $stylesheet );
if ( $post ) {
$css = $post->post_content;
}
/**
* Filters the Custom CSS Output into the <head>.
*
* @since WP-4.7.0
*
* @param string $css CSS pulled in from the Custom CSS CPT.
* @param string $stylesheet The theme stylesheet name.
*/
$css = apply_filters( 'wp_get_custom_css', $css, $stylesheet );
return $css;
}
Changelog
Version | Description |
---|---|
WP-4.7.0 | Introduced. |