WP_Widget_Categories::__construct() WordPress Method
The WP_Widget_Categories::__construct() method is used to create a new category widget. This widget can be used to display a list of categories on your WordPress site.
WP_Widget_Categories::__construct() #
Sets up a new Categories widget instance.
Source
File: wp-includes/widgets/class-wp-widget-categories.php
public function __construct() { $widget_ops = array( 'classname' => 'widget_categories', 'description' => __( 'A list or dropdown of categories.' ), 'customize_selective_refresh' => true, 'show_instance_in_rest' => true, ); parent::__construct( 'categories', __( 'Categories' ), $widget_ops ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |