WP_Widget_Search::widget() – Outputs the content for the current Search widget instance.
You appear to be a bot. Output may be restricted
Description
Outputs the content for the current Search widget instance.
Usage
WP_Widget_Search::widget( $args, $instance );
Parameters
- $args
- ( array ) required – Display arguments including 'before_title', 'after_title', 'before_widget', and 'after_widget'.
- $instance
- ( array ) required – Settings for the current Search widget instance.
Returns
void
Source
File name: wordpress/wp-includes/widgets/class-wp-widget-search.php
Lines:
1 to 18 of 18
public function widget( $args, $instance ) { $title = ! empty( $instance['title'] ) ? $instance['title'] : ''; /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */ $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); echo $args['before_widget']; if ( $title ) { echo $args['before_title'] . $title . $args['after_title']; } // Use active theme search form if it exists. get_search_form(); echo $args['after_widget']; }