WP_Widget_RSS::__construct
Sets up a new RSS widget instance.
Method of the class: WP_Widget_RSS{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Widget_RSS = new WP_Widget_RSS(); $WP_Widget_RSS->__construct();
Changelog
| Since 2.8.0 | Introduced. |
WP_Widget_RSS::__construct() WP Widget RSS:: construct code WP 6.9.1
public function __construct() {
$widget_ops = array(
'description' => __( 'Entries from any RSS or Atom feed.' ),
'customize_selective_refresh' => true,
'show_instance_in_rest' => true,
);
$control_ops = array(
'width' => 400,
'height' => 200,
);
parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops );
}