WP_Widget_RSS::__construct()publicWP 2.8.0

Sets up a new RSS widget instance.

Method of the class: WP_Widget_RSS{}

No Hooks.

Return

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() code WP 6.5.2

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 );
}