WC_Widget::widget_end
Output the html at the end of a widget.
Метод класса: WC_Widget{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Widget = new WC_Widget(); $WC_Widget->widget_end( $args );
- $args(массив) (обязательный)
- Arguments.
Код WC_Widget::widget_end() WC Widget::widget end WC 10.3.4
public function widget_end( $args ) {
echo $args['after_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
}