W3cubDocs

/WordPress

WP_Widget_Search::form( array $instance )

Outputs the settings form for the Search widget.

Parameters

$instancearrayrequired
Current settings.

Source

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
}

Changelog

Version Description
2.8.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget_search/form