WP_Customize_Setting::js_value
Sanitize the setting's value for use in JavaScript.
Метод класса: WP_Customize_Setting{}
Хуки из метода
Возвращает
Разное. The requested escaped value.
Использование
$WP_Customize_Setting = new WP_Customize_Setting(); $WP_Customize_Setting->js_value();
Список изменений
| С версии 3.4.0 | Введена. |
Код WP_Customize_Setting::js_value() WP Customize Setting::js value WP 6.9
public function js_value() {
/**
* Filters a Customize setting value for use in JavaScript.
*
* The dynamic portion of the hook name, `$this->id`, refers to the setting ID.
*
* @since 3.4.0
*
* @param mixed $value The setting value.
* @param WP_Customize_Setting $setting WP_Customize_Setting instance.
*/
$value = apply_filters( "customize_sanitize_js_{$this->id}", $this->value(), $this );
if ( is_string( $value ) ) {
return html_entity_decode( $value, ENT_QUOTES, 'UTF-8' );
}
return $value;
}