WC_Widget::widget_end()
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() WC Widget::widget end code WC 9.5.1
public function widget_end( $args ) { echo $args['after_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped }