WP_Widget_RSS::__construct()publicWP 2.8.0

Sets up a new RSS widget instance.

Метод класса: WP_Widget_RSS{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Widget_RSS = new WP_Widget_RSS();
$WP_Widget_RSS->__construct();

Список изменений

С версии 2.8.0 Введена.

Код WP_Widget_RSS::__construct() 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 );
}