WC_Widget::widget_end()publicWC 1.0

Output the html at the end of a widget.

Method of the class: WC_Widget{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Widget = new WC_Widget();
$WC_Widget->widget_end( $args );
$args(array) (required)
Arguments.

WC_Widget::widget_end() code WC 8.7.0

public function widget_end( $args ) {
	echo $args['after_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
}