The WP_Customize_Setting class contains two deprecated function calls that need to be migrated to prevent potential issues and improve code quality. Addressing these will enhance maintainability and reduce technical debt.
Task
- Identify the usages of the deprecated
update() method in src/wp-includes/class-wp-customize-setting.php at lines 722 and 732.
- Replace the deprecated calls with the recommended alternatives, ensuring that the functionality remains intact.
- Run existing tests to verify that the changes do not introduce any regressions.
Scope
Do not change any other parts of the WP_Customize_Setting class or related classes.
The
WP_Customize_Settingclass contains two deprecated function calls that need to be migrated to prevent potential issues and improve code quality. Addressing these will enhance maintainability and reduce technical debt.Task
update()method insrc/wp-includes/class-wp-customize-setting.phpat lines 722 and 732.Scope
Do not change any other parts of the
WP_Customize_Settingclass or related classes.