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 );
	}


Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.