WC_Widget::widget_start
Output the html at the start of a widget.
Method of the class: WC_Widget{}
Hooks from the method
Returns
null. Nothing (null).
Usage
$WC_Widget = new WC_Widget(); $WC_Widget->widget_start( $args, $instance );
- $args(array) (required)
- Arguments.
- $instance(array) (required)
- Instance.
WC_Widget::widget_start() WC Widget::widget start code WC 10.6.2
public function widget_start( $args, $instance ) {
echo $args['before_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
$title = apply_filters( 'widget_title', $this->get_instance_title( $instance ), $instance, $this->id_base );
if ( $title ) {
echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
}
}