GC_Customize_Custom_CSS_Setting::preview()

最后更新于:2021-11-27 00:08:21

GC_Customize_Custom_CSS_Setting::preview()

Add filter to preview post value.

响应

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

源文件

文件: gc-includes/customize/class-gc-customize-custom-css-setting.php

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