WP_Customize_Widgets::get_captured_options() protected WP 3.9.0
Retrieves captured widget option updates.
{} It's a method of the class: WP_Customize_Widgets{}
No Hooks.
Return
Array. Array of captured options.
Usage
// protected - for code of main (parent) or child class $result = $this->get_captured_options();
Changelog
Since 3.9.0 | Introduced. |
Code of WP_Customize_Widgets::get_captured_options() WP Customize Widgets::get captured options WP 5.6
protected function get_captured_options() {
return $this->_captured_options;
}