WP_Widget::update()
Updates a particular instance of a widget.
This function should check that $new_instance is set correctly. The newly-calculated value of $instance should be returned. If false is returned, the instance won't be saved/updated.
Метод класса: WP_Widget{}
Хуков нет.
Возвращает
Массив
. Settings to save or bool false to cancel saving.
Использование
$WP_Widget = new WP_Widget(); $WP_Widget->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::update() WP Widget::update WP 6.1.1
public function update( $new_instance, $old_instance ) { return $new_instance; }