WP_Widget_Categories::__construct()
Sets up a new Categories widget instance.
Description Description
Source 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, ); parent::__construct( 'categories', __( 'Categories' ), $widget_ops ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |