WP_Widget_Recent_Comments::update()
Handles updating settings for the current Recent Comments widget instance.
Метод класса: WP_Widget_Recent_Comments{}
Хуков нет.
Возвращает
Массив
. Updated settings to save.
Использование
$WP_Widget_Recent_Comments = new WP_Widget_Recent_Comments(); $WP_Widget_Recent_Comments->update( $new_instance, $old_instance );
- $new_instance(массив) (обязательный)
- New settings for this instance as input by the user via WP_Widget::form().
- $old_instance(массив) (обязательный)
- Old settings for this instance.
Список изменений
С версии 2.8.0 | Введена. |
Код WP_Widget_Recent_Comments::update() WP Widget Recent Comments::update WP 6.7.2
public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = sanitize_text_field( $new_instance['title'] ); $instance['number'] = absint( $new_instance['number'] ); return $instance; }