WP_Widget_RSS::__construct
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 Widget RSS:: construct WP 7.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 );
}