WP_Customize_Custom_CSS_Setting::filter_previewed_wp_get_custom_css

Advertisement

Summery Summery

Filter wp_get_custom_css for applying the customized value.

Syntax Syntax

WP_Customize_Custom_CSS_Setting::filter_previewed_wp_get_custom_css( string $css, string $stylesheet )

Description Description

This is used in the preview when wp_get_custom_css() is called for rendering the styles.

Parameters Parameters

$css

(Required) Original CSS.

$stylesheet

(Required) Current stylesheet.

Return Return

(string) CSS.

Source Source

File: wp-includes/customize/class-wp-customize-custom-css-setting.php

	 */
	public function filter_previewed_wp_get_custom_css( $css, $stylesheet ) {
		if ( $stylesheet === $this->stylesheet ) {
			$customized_value = $this->post_value( null );
			if ( ! is_null( $customized_value ) ) {
				$css = $customized_value;
			}
		}
		return $css;

Advertisement

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

See also See also

Advertisement

Leave a Reply