wp_get_custom_css( string $stylesheet = '' )
Fetches the saved Custom CSS content for rendering.
Parameters
- $stylesheet
-
(string) (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 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 |
---|---|
4.7.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_custom_css