Changeset 47593 for trunk/src/wp-includes/widgets/class-wp-widget-meta.php
- Timestamp:
- 04/17/2020 09:36:25 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-meta.php
r45728 r47593 114 114 $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) ); 115 115 ?> 116 <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> 116 <p> 117 <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label> 118 <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'] ); ?>" /> 119 </p> 117 120 <?php 118 121 }
Note: See TracChangeset
for help on using the changeset viewer.