WP_Widget_Links::__construct() WordPress Method
The WP_Widget_Links::__construct() method is used to create a new widget to display links in a list. The widget can be configured to display links from a specified category, with options to show the link title, description, and/or rating.
WP_Widget_Links::__construct() #
Sets up a new Links widget instance.
Source
File: wp-includes/widgets/class-wp-widget-links.php
public function __construct() { $widget_ops = array( 'description' => __( 'Your blogroll' ), 'customize_selective_refresh' => true, ); parent::__construct( 'links', __( 'Links' ), $widget_ops ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |