WP_Customize_Widgets::is_option_capture_ignored( string $option_name )

Determines whether the captured option update should be ignored.


Description Description


Parameters Parameters

$option_name

(string) (Required) Option name.


Top ↑

Return Return

(bool) Whether the option capture is ignored.


Top ↑

Source Source

File: wp-includes/class-wp-customize-widgets.php

	protected function is_option_capture_ignored( $option_name ) {
		return ( 0 === strpos( $option_name, '_transient_' ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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