WP_Customize_Widgets::sanitize_widget_js_instance( array $value, string $id_base = null )
Converts a widget instance into JSON-representable format.
Parameters
- $value
-
(Required) Widget instance to convert to JSON.
- $id_base
-
(Optional) Base of the ID of the widget being sanitized.
Default value: null
Return
(array) JSON-converted widget instance.
Source
File: wp-includes/class-wp-customize-widgets.php
public function sanitize_widget_js_instance( $value ) {
if ( empty( $value['is_widget_customizer_js_value'] ) ) {
$serialized = serialize( $value );
$value = array(
'encoded_serialized_instance' => base64_encode( $serialized ),
'title' => empty( $value['title'] ) ? '' : $value['title'],
'is_widget_customizer_js_value' => true,
'instance_hash_key' => $this->get_instance_hash_key( $serialized ),
);
}
return $value;
}
Changelog
Version | Description |
---|---|
5.8.0 | Added the $id_base parameter. |
3.9.0 | Introduced. |