WP_Widget_Calendar::form() public WP 2.8.0
Outputs the settings form for the Calendar widget.
{} Это метод класса: WP_Widget_Calendar{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$WP_Widget_Calendar = new WP_Widget_Calendar(); $WP_Widget_Calendar->form( $instance );
- $instance(массив) (обязательный)
- Current settings.
Список изменений
С версии 2.8.0 | Введена. |
Код WP_Widget_Calendar::form() WP Widget Calendar::form WP 5.6
public function form( $instance ) {
$instance = wp_parse_args( (array) $instance, array( '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( $instance['title'] ); ?>" />
</p>
<?php
}