WC_Widget::widget_end
Output the html at the end of a widget.
Method of the class: WC_Widget{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Widget = new WC_Widget(); $WC_Widget->widget_end( $args );
- $args(array) (required)
- Arguments.
WC_Widget::widget_end() WC Widget::widget end code WC 10.6.2
public function widget_end( $args ) {
echo $args['after_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
}