WP_Widget_Custom_HTML::__construct() WordPress Method
The WP_Widget_Custom_HTML::__construct() function allows you to create a custom HTML widget. This widget will display the HTML you provide in the widget settings. You can use this widget to display any custom HTML, such as a video embed or a social media follow button.
WP_Widget_Custom_HTML::__construct() #
Sets up a new Custom HTML widget instance.
Source
File: wp-includes/widgets/class-wp-widget-custom-html.php
public function __construct() {
$widget_ops = array(
'classname' => 'widget_custom_html',
'description' => __( 'Arbitrary HTML code.' ),
'customize_selective_refresh' => true,
'show_instance_in_rest' => true,
);
$control_ops = array(
'width' => 400,
'height' => 350,
);
parent::__construct( 'custom_html', __( 'Custom HTML' ), $widget_ops, $control_ops );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.8.1 | Introduced. |