WP_Widget_Calendar::form

Advertisement

Summery Summery

Outputs the settings form for the Calendar widget.

Syntax Syntax

WP_Widget_Calendar::form( array $instance )

Parameters Parameters

$instance

(Required) Current settings.

Source Source

File: wp-includes/widgets/class-wp-widget-calendar.php

	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>

Advertisement

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.

Advertisement

Leave a Reply