WP_Widget_Archives::__construct() WordPress Method
The WP_Widget_Archives::__construct() method is used to create a new WordPress widget for displaying archives. This widget can be used to display archives by month, year, or category.
WP_Widget_Archives::__construct() #
Sets up a new Archives widget instance.
Source
File: wp-includes/widgets/class-wp-widget-archives.php
public function __construct() { $widget_ops = array( 'classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s Posts.' ), 'customize_selective_refresh' => true, 'show_instance_in_rest' => true, ); parent::__construct( 'archives', __( 'Archives' ), $widget_ops ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |