WP_Widget_Search::form
Outputs the settings form for the Search widget.
Метод класса: WP_Widget_Search{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WP_Widget_Search = new WP_Widget_Search(); $WP_Widget_Search->form( $instance );
- $instance(массив) (обязательный)
- Current settings.
Список изменений
| С версии 2.8.0 | Введена. |
Код WP_Widget_Search::form() WP Widget Search::form WP 6.9.1
<?php
public function form( $instance ) {
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
$title = $instance['title'];
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
</p>
<?php
}