WP_Customize_Custom_CSS_Setting::preview()

Add filter to preview post value.


Description Description


Return Return

(bool) False when preview short-circuits due no change needing to be previewed.


Top ↑

Source Source

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

	public function preview() {
		if ( $this->is_previewed ) {
			return false;
		}
		$this->is_previewed = true;
		add_filter( 'wp_get_custom_css', array( $this, 'filter_previewed_wp_get_custom_css' ), 9, 2 );
		return true;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.9 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.