WP_Customize_Manager::register_dynamic_settings()

Adds settings from the POST data that were not added with code, e.g. dynamically-created settings for Widgets


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/class-wp-customize-manager.php. View all references

public function register_dynamic_settings() {
	$setting_ids = array_keys( $this->unsanitized_post_values() );
	$this->add_dynamic_settings( $setting_ids );
}


Top ↑

Changelog

Changelog
Version Description
4.2.0 Introduced.

Top ↑

User Contributed Notes

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