WP_Customize_Widgets::count_captured_options()protectedWP 3.9.0

Retrieves the number of captured widget option updates.

Method of the class: WP_Customize_Widgets{}

No Hooks.

Return

Int. Number of updated options.

Usage

// protected - for code of main (parent) or child class
$result = $this->count_captured_options();

Changelog

Since 3.9.0 Introduced.

WP_Customize_Widgets::count_captured_options() code WP 6.5.2

protected function count_captured_options() {
	return count( $this->_captured_options );
}