You appear to be a bot. Output may be restricted
Description
Outputs the settings form for the Meta widget.
Usage
WP_Widget_Meta::form( $instance );
Parameters
- $instance
- ( array ) required – Current settings.
Returns
void
Source
File name: wordpress/wp-includes/widgets/class-wp-widget-meta.php
Lines:
1 to 9 of 9
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 }